2010-07-28 15:35:01 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, perl, perlXMLParser, gtk, libXft
|
|
|
|
, libpng, zlib, popt, boehmgc, libxml2, libxslt, glib, gtkmm
|
|
|
|
, glibmm, libsigcxx, lcms, boost, gettext, makeWrapper, intltool
|
2015-02-22 07:14:53 +00:00
|
|
|
, gsl, python, pyxml, lxml, poppler, imagemagick, libwpg, librevenge
|
|
|
|
, libvisio, libcdr, libexif
|
|
|
|
}:
|
2005-09-07 14:57:30 +00:00
|
|
|
|
2008-02-03 13:17:59 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2015-02-22 07:14:53 +00:00
|
|
|
name = "inkscape-0.91";
|
2005-09-07 14:57:30 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2015-02-22 07:14:53 +00:00
|
|
|
url = "https://inkscape.global.ssl.fastly.net/media/resources/file/"
|
|
|
|
+ "${name}.tar.bz2";
|
|
|
|
sha256 = "06ql3x732x2rlnanv0a8aharsnj91j5kplksg574090rks51z42d";
|
2005-09-07 14:57:30 +00:00
|
|
|
};
|
|
|
|
|
2015-02-22 07:14:53 +00:00
|
|
|
postPatch = ''
|
|
|
|
patchShebangs share/extensions
|
2015-04-08 05:02:59 +00:00
|
|
|
''
|
|
|
|
# Clang gets misdetected, so hardcode the right answer
|
|
|
|
+ stdenv.lib.optionalString (stdenv.cc.cc.isClang or false) ''
|
|
|
|
substituteInPlace src/ui/tool/node.h \
|
|
|
|
--replace "#if __cplusplus >= 201103L" "#if true"
|
2015-02-22 07:14:53 +00:00
|
|
|
'';
|
2014-07-18 09:54:10 +00:00
|
|
|
|
2008-02-22 16:24:58 +00:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
# Python is used at run-time to execute scripts, e.g., those from
|
|
|
|
# the "Effects" menu.
|
2009-10-18 04:43:40 +00:00
|
|
|
python pyxml lxml
|
2008-02-22 16:24:58 +00:00
|
|
|
];
|
|
|
|
|
2005-09-07 14:57:30 +00:00
|
|
|
buildInputs = [
|
2009-11-26 12:39:22 +00:00
|
|
|
pkgconfig perl perlXMLParser gtk libXft libpng zlib popt boehmgc
|
2008-02-03 13:17:59 +00:00
|
|
|
libxml2 libxslt glib gtkmm glibmm libsigcxx lcms boost gettext
|
2015-02-22 07:14:53 +00:00
|
|
|
makeWrapper intltool gsl poppler imagemagick libwpg librevenge
|
|
|
|
libvisio libcdr libexif
|
2005-09-07 14:57:30 +00:00
|
|
|
];
|
2008-01-31 10:41:45 +00:00
|
|
|
|
2014-07-18 09:54:10 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
doCheck = true;
|
|
|
|
|
2008-02-22 16:24:58 +00:00
|
|
|
postInstall = ''
|
|
|
|
# Make sure PyXML modules can be found at run-time.
|
|
|
|
for i in "$out/bin/"*
|
|
|
|
do
|
|
|
|
wrapProgram "$i" --prefix PYTHONPATH : \
|
2014-08-09 15:02:36 +00:00
|
|
|
"$(toPythonPath ${pyxml}):$(toPythonPath ${lxml})" \
|
|
|
|
--prefix PATH : ${python}/bin || \
|
2008-02-22 16:24:58 +00:00
|
|
|
exit 2
|
|
|
|
done
|
2015-02-22 07:14:53 +00:00
|
|
|
rm "$out/share/icons/hicolor/icon-theme.cache"
|
2008-02-22 16:24:58 +00:00
|
|
|
'';
|
|
|
|
|
2014-07-18 09:54:10 +00:00
|
|
|
meta = with stdenv.lib; {
|
2008-02-22 16:24:58 +00:00
|
|
|
license = "GPL";
|
2008-01-31 10:41:45 +00:00
|
|
|
homepage = http://www.inkscape.org;
|
2014-07-18 09:54:10 +00:00
|
|
|
description = "Vector graphics editor";
|
|
|
|
platforms = platforms.all;
|
2009-03-03 13:27:40 +00:00
|
|
|
longDescription = ''
|
|
|
|
Inkscape is a feature-rich vector graphics editor that edits
|
|
|
|
files in the W3C SVG (Scalable Vector Graphics) file format.
|
2009-10-18 04:43:53 +00:00
|
|
|
|
2009-11-26 12:39:22 +00:00
|
|
|
If you want to import .eps files install ps2edit.
|
2009-03-03 13:27:40 +00:00
|
|
|
'';
|
2008-01-31 10:41:45 +00:00
|
|
|
};
|
2005-09-07 14:57:30 +00:00
|
|
|
}
|