Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
232 lines
5.0 KiB
Nix
232 lines
5.0 KiB
Nix
{
|
||
stdenv,
|
||
lib,
|
||
boehmgc,
|
||
boost,
|
||
cairo,
|
||
callPackage,
|
||
cmake,
|
||
desktopToDarwinBundle,
|
||
fetchpatch,
|
||
fetchurl,
|
||
fd,
|
||
gettext,
|
||
ghostscript,
|
||
glib,
|
||
glibmm,
|
||
gobject-introspection,
|
||
gsl,
|
||
gspell,
|
||
gtk-mac-integration,
|
||
gtkmm3,
|
||
gdk-pixbuf,
|
||
imagemagick,
|
||
lcms,
|
||
lib2geom,
|
||
libcdr,
|
||
libexif,
|
||
libpng,
|
||
librevenge,
|
||
librsvg,
|
||
libsigcxx,
|
||
libvisio,
|
||
libwpg,
|
||
libXft,
|
||
libxml2,
|
||
libxslt,
|
||
ninja,
|
||
perlPackages,
|
||
pkg-config,
|
||
poppler,
|
||
popt,
|
||
potrace,
|
||
python3,
|
||
runCommand,
|
||
replaceVars,
|
||
wrapGAppsHook3,
|
||
libepoxy,
|
||
zlib,
|
||
yq,
|
||
}:
|
||
let
|
||
python3Env = python3.withPackages (
|
||
ps: with ps; [
|
||
# List taken almost verbatim from the output of nix-build -A inkscape.passthru.pythonDependencies
|
||
appdirs
|
||
beautifulsoup4
|
||
cachecontrol
|
||
cssselect
|
||
filelock
|
||
inkex
|
||
lxml
|
||
numpy
|
||
packaging
|
||
pillow
|
||
pygobject3
|
||
pyparsing
|
||
pyserial
|
||
requests
|
||
scour
|
||
tinycss2
|
||
zstandard
|
||
]
|
||
);
|
||
in
|
||
stdenv.mkDerivation (finalAttrs: {
|
||
pname = "inkscape";
|
||
version = "1.4.2";
|
||
|
||
src = fetchurl {
|
||
url = "https://inkscape.org/release/inkscape-${finalAttrs.version}/source/archive/xz/dl/inkscape-${finalAttrs.version}.tar.xz";
|
||
sha256 = "sha256-IABTDHkX5SYMnoV1pxVP9pJmQ9IAZIfXFOMEqWPwx4I=";
|
||
};
|
||
|
||
# Inkscape hits the ARGMAX when linking on macOS. It appears to be
|
||
# CMake’s ARGMAX check doesn’t offer enough padding for NIX_LDFLAGS.
|
||
# Setting strictDeps it avoids duplicating some dependencies so it
|
||
# will leave us under ARGMAX.
|
||
strictDeps = true;
|
||
|
||
patches = [
|
||
(replaceVars ./fix-python-paths.patch {
|
||
# Python is used at run-time to execute scripts,
|
||
# e.g., those from the "Effects" menu.
|
||
python3 = lib.getExe python3Env;
|
||
})
|
||
(replaceVars ./fix-ps2pdf-path.patch {
|
||
# Fix path to ps2pdf binary
|
||
inherit ghostscript;
|
||
})
|
||
(fetchpatch {
|
||
name = "fix-build-poppler-25.06.0.patch";
|
||
url = "https://gitlab.com/inkscape/inkscape/-/commit/97bd8f29a61e691ceea98ca2444b974cf4256ae0.patch";
|
||
hash = "sha256-bYRd/KUh/7qFb7x0EuUgQYA9P8abcTf5XS67gzaAiXA=";
|
||
})
|
||
(fetchpatch {
|
||
name = "fix-build-poppler-25.07.0.patch";
|
||
url = "https://gitlab.com/inkscape/inkscape/-/commit/ce52c5f96106ae5747171663a46831f21aa52d95.patch";
|
||
hash = "sha256-3Yj+neSRSSQPeeZkHJ0P6v3Sis/lg9xiygktI6Z+zDY=";
|
||
})
|
||
];
|
||
|
||
postPatch = ''
|
||
patchShebangs share/extensions
|
||
patchShebangs share/templates
|
||
patchShebangs man/fix-roff-punct
|
||
|
||
# double-conversion is a dependency of 2geom
|
||
substituteInPlace CMakeScripts/DefineDependsandFlags.cmake \
|
||
--replace-fail 'find_package(DoubleConversion REQUIRED)' ""
|
||
# use native Python when cross-compiling
|
||
shopt -s globstar
|
||
for f in **/CMakeLists.txt; do
|
||
substituteInPlace $f \
|
||
--replace-quiet "COMMAND python3" "COMMAND ${lib.getExe python3Env.pythonOnBuildForHost}"
|
||
done
|
||
shopt -u globstar
|
||
'';
|
||
|
||
nativeBuildInputs = [
|
||
pkg-config
|
||
cmake
|
||
ninja
|
||
python3Env
|
||
glib # for setup hook
|
||
gdk-pixbuf # for setup hook
|
||
wrapGAppsHook3
|
||
gobject-introspection
|
||
]
|
||
++ (with perlPackages; [
|
||
perl
|
||
XMLParser
|
||
])
|
||
++ lib.optionals stdenv.hostPlatform.isDarwin [
|
||
desktopToDarwinBundle
|
||
];
|
||
|
||
buildInputs = [
|
||
boehmgc
|
||
boost
|
||
gettext
|
||
glib
|
||
glibmm
|
||
gsl
|
||
gtkmm3
|
||
imagemagick
|
||
lcms
|
||
lib2geom
|
||
libcdr
|
||
libexif
|
||
libpng
|
||
librevenge
|
||
librsvg # for loading icons
|
||
libsigcxx
|
||
libvisio
|
||
libwpg
|
||
libXft
|
||
libxml2
|
||
libxslt
|
||
perlPackages.perl
|
||
poppler
|
||
popt
|
||
potrace
|
||
python3Env
|
||
zlib
|
||
libepoxy
|
||
]
|
||
++ lib.optionals (!stdenv.hostPlatform.isDarwin) [
|
||
gspell
|
||
]
|
||
++ lib.optionals stdenv.hostPlatform.isDarwin [
|
||
cairo
|
||
gtk-mac-integration
|
||
];
|
||
|
||
# Make sure PyXML modules can be found at run-time.
|
||
postInstall = lib.optionalString stdenv.hostPlatform.isDarwin ''
|
||
for f in $out/lib/inkscape/*.dylib; do
|
||
ln -s $f $out/lib/$(basename $f)
|
||
done
|
||
'';
|
||
|
||
passthru = {
|
||
tests = {
|
||
ps2pdf-plugin = callPackage ./test-ps2pdf-plugin.nix { };
|
||
inherit (python3.pkgs) inkex;
|
||
};
|
||
|
||
pythonDependencies =
|
||
runCommand "python-dependency-list"
|
||
{
|
||
nativeBuildInputs = [
|
||
fd
|
||
yq
|
||
];
|
||
inherit (finalAttrs) src;
|
||
}
|
||
''
|
||
unpackPhase
|
||
tomlq --slurp 'map(.tool.poetry.dependencies | to_entries | map(.key)) | flatten | map(ascii_downcase) | unique' $(fd pyproject.toml) > "$out"
|
||
'';
|
||
};
|
||
|
||
meta = {
|
||
description = "Vector graphics editor";
|
||
homepage = "https://www.inkscape.org";
|
||
license = lib.licenses.gpl3Plus;
|
||
maintainers = with lib.maintainers; [
|
||
jtojnar
|
||
x123
|
||
Luflosi
|
||
];
|
||
platforms = lib.platforms.all;
|
||
mainProgram = "inkscape";
|
||
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.
|
||
'';
|
||
};
|
||
})
|