nixpkgs/pkgs/applications/graphics/inkscape/default.nix

167 lines
3.6 KiB
Nix
Raw Normal View History

{ lib, stdenv
, boehmgc
, boost
, cairo
, cmake
2020-04-14 08:55:08 +00:00
, double-conversion
, fetchurl
2021-03-23 06:39:14 +00:00
, fetchpatch
, gettext
2020-04-14 08:55:08 +00:00
, gdl
, ghostscript
, glib
2020-04-14 08:55:08 +00:00
, glib-networking
, glibmm
, gsl
2020-04-14 08:55:08 +00:00
, gtk-mac-integration
, gtkmm3
, gtkspell3
, gdk-pixbuf
, imagemagick
, lcms
, libcdr
, libexif
, libpng
, librevenge
, librsvg
, libsigcxx
2020-04-14 08:55:08 +00:00
, libsoup
, libvisio
, libwpg
, libXft
, libxml2
, libxslt
2020-04-14 08:55:08 +00:00
, ninja
, perlPackages
, pkg-config
, poppler
, popt
, potrace
, python3
2020-04-14 08:55:08 +00:00
, substituteAll
, wrapGAppsHook
, zlib
}:
2017-03-09 00:26:26 +00:00
let
python3Env = python3.withPackages
(ps: with ps; [
numpy
lxml
scour
]);
2015-05-21 13:43:02 +00:00
in
stdenv.mkDerivation rec {
pname = "inkscape";
2021-01-19 15:35:29 +00:00
version = "1.0.2";
src = fetchurl {
2020-04-14 08:55:08 +00:00
url = "https://media.inkscape.org/dl/resources/file/${pname}-${version}.tar.xz";
2021-01-19 15:35:29 +00:00
sha256 = "sha256-2j4jBRGgjL8h6GcQ0WFFhZT+qHhn6RV7Z+0BoE6ieYo=";
};
# Inkscape hits the ARGMAX when linking on macOS. It appears to be
# CMakes ARGMAX check doesnt offer enough padding for NIX_LDFLAGS.
# Setting strictDeps it avoids duplicating some dependencies so it
# will leave us under ARGMAX.
strictDeps = true;
2020-04-14 08:55:08 +00:00
patches = [
(substituteAll {
src = ./fix-python-paths.patch;
# Python is used at run-time to execute scripts,
# e.g., those from the "Effects" menu.
python3 = "${python3Env}/bin/python";
})
2021-03-23 06:39:14 +00:00
# Fix build with glib 2.68
# https://gitlab.com/inkscape/inkscape/-/merge_requests/2790
(fetchpatch {
url = "https://gitlab.com/inkscape/inkscape/-/commit/eb24388f1730918edd9565d9e5d09340ec0b3b08.patch";
sha256 = "d2FHRWcOzi0Vsr6t0MuLu3rWpvhFKuuvoXd4/NKUSJI=";
})
2020-04-14 08:55:08 +00:00
];
postPatch = ''
patchShebangs share/extensions
substituteInPlace share/extensions/eps_input.inx \
--replace "location=\"path\">ps2pdf" "location=\"absolute\">${ghostscript}/bin/ps2pdf"
substituteInPlace share/extensions/ps_input.inx \
--replace "location=\"path\">ps2pdf" "location=\"absolute\">${ghostscript}/bin/ps2pdf"
substituteInPlace share/extensions/ps_input.py \
--replace "call('ps2pdf'" "call('${ghostscript}/bin/ps2pdf'"
2020-04-14 08:55:08 +00:00
patchShebangs share/templates
patchShebangs man/fix-roff-punct
'';
nativeBuildInputs = [
pkg-config
cmake
2020-04-14 08:55:08 +00:00
ninja
python3Env
2020-04-14 08:55:08 +00:00
glib # for setup hook
gdk-pixbuf # for setup hook
wrapGAppsHook
] ++ (with perlPackages; [
perl
XMLParser
]);
buildInputs = [
boehmgc
boost
2020-04-14 08:55:08 +00:00
double-conversion
gdl
gettext
glib
2020-04-14 08:55:08 +00:00
glib-networking
glibmm
gsl
2020-04-14 08:55:08 +00:00
gtkmm3
imagemagick
lcms
libcdr
libexif
libpng
librevenge
librsvg # for loading icons
libsigcxx
2020-04-14 08:55:08 +00:00
libsoup
libvisio
libwpg
libXft
libxml2
libxslt
perlPackages.perl
poppler
popt
potrace
python3Env
zlib
2021-01-15 13:21:58 +00:00
] ++ lib.optionals (!stdenv.isDarwin) [
2020-04-14 08:55:08 +00:00
gtkspell3
2021-01-15 13:21:58 +00:00
] ++ lib.optionals stdenv.isDarwin [
cairo
2020-04-14 08:55:08 +00:00
gtk-mac-integration
];
# Make sure PyXML modules can be found at run-time.
2021-01-15 13:21:58 +00:00
postInstall = lib.optionalString stdenv.isDarwin ''
install_name_tool -change $out/lib/libinkscape_base.dylib $out/lib/inkscape/libinkscape_base.dylib $out/bin/inkscape
install_name_tool -change $out/lib/libinkscape_base.dylib $out/lib/inkscape/libinkscape_base.dylib $out/bin/inkview
'';
meta = with lib; {
description = "Vector graphics editor";
2020-04-13 23:11:51 +00:00
homepage = "https://www.inkscape.org";
license = licenses.gpl3Plus;
maintainers = [ maintainers.jtojnar ];
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.
'';
};
}