662a6b1ca6
use the new `stdenv.cc.is{GNU,Clang}` instead, which will always be defined.
66 lines
2 KiB
Nix
66 lines
2 KiB
Nix
{ stdenv, fetchurl, pkgconfig, perl, perlXMLParser, gtk, libXft
|
|
, libpng, zlib, popt, boehmgc, libxml2, libxslt, glib, gtkmm
|
|
, glibmm, libsigcxx, lcms, boost, gettext, makeWrapper, intltool
|
|
, gsl, python, pyxml, lxml, poppler, imagemagick, libwpg, librevenge
|
|
, libvisio, libcdr, libexif
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "inkscape-0.91";
|
|
|
|
src = fetchurl {
|
|
url = "https://inkscape.global.ssl.fastly.net/media/resources/file/"
|
|
+ "${name}.tar.bz2";
|
|
sha256 = "06ql3x732x2rlnanv0a8aharsnj91j5kplksg574090rks51z42d";
|
|
};
|
|
|
|
postPatch = ''
|
|
patchShebangs share/extensions
|
|
''
|
|
# Clang gets misdetected, so hardcode the right answer
|
|
+ stdenv.lib.optionalString stdenv.cc.isClang ''
|
|
substituteInPlace src/ui/tool/node.h \
|
|
--replace "#if __cplusplus >= 201103L" "#if true"
|
|
'';
|
|
|
|
propagatedBuildInputs = [
|
|
# Python is used at run-time to execute scripts, e.g., those from
|
|
# the "Effects" menu.
|
|
python pyxml lxml
|
|
];
|
|
|
|
buildInputs = [
|
|
pkgconfig perl perlXMLParser gtk libXft libpng zlib popt boehmgc
|
|
libxml2 libxslt glib gtkmm glibmm libsigcxx lcms boost gettext
|
|
makeWrapper intltool gsl poppler imagemagick libwpg librevenge
|
|
libvisio libcdr libexif
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
doCheck = true;
|
|
|
|
postInstall = ''
|
|
# Make sure PyXML modules can be found at run-time.
|
|
for i in "$out/bin/"*
|
|
do
|
|
wrapProgram "$i" --prefix PYTHONPATH : \
|
|
"$(toPythonPath ${pyxml}):$(toPythonPath ${lxml})" \
|
|
--prefix PATH : ${python}/bin || \
|
|
exit 2
|
|
done
|
|
rm "$out/share/icons/hicolor/icon-theme.cache"
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
license = "GPL";
|
|
homepage = http://www.inkscape.org;
|
|
description = "Vector graphics editor";
|
|
platforms = platforms.all;
|
|
longDescription = ''
|
|
Inkscape is a feature-rich vector graphics editor that edits
|
|
files in the W3C SVG (Scalable Vector Graphics) file format.
|
|
|
|
If you want to import .eps files install ps2edit.
|
|
'';
|
|
};
|
|
}
|