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
92 lines
2.0 KiB
Nix
92 lines
2.0 KiB
Nix
{
|
|
lib,
|
|
python3Packages,
|
|
fetchFromGitHub,
|
|
makeWrapper,
|
|
versionCheckHook,
|
|
nix-update-script,
|
|
|
|
# shared
|
|
gzip,
|
|
# pdftowrite
|
|
poppler-utils,
|
|
inkscape,
|
|
ghostscript,
|
|
imagemagick,
|
|
libxml2,
|
|
libxslt,
|
|
# writetopdf
|
|
wkhtmltopdf,
|
|
pdftk,
|
|
librsvg,
|
|
}:
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "pdftowrite";
|
|
version = "2021.05.03";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "apebl";
|
|
repo = "pdftowrite";
|
|
tag = version;
|
|
hash = "sha256-IFX9K74tfGKyMtqlc/RsV00baZEzE3HcPAGfrmTHnDQ=";
|
|
};
|
|
|
|
dependencies = [
|
|
python3Packages.shortuuid
|
|
python3Packages.picosvg
|
|
];
|
|
|
|
build-system = [
|
|
python3Packages.setuptools
|
|
python3Packages.setuptools-scm
|
|
makeWrapper
|
|
];
|
|
|
|
patches = [
|
|
# fix inkscape flag (see https://gitlab.com/inkscape/inkscape/-/issues/4536)
|
|
./inkscape-unknown-option-pdf-page.patch
|
|
];
|
|
|
|
postInstall =
|
|
let
|
|
pdftowritePath = lib.makeBinPath [
|
|
# shared
|
|
gzip
|
|
# pdftowrite
|
|
poppler-utils
|
|
inkscape
|
|
ghostscript
|
|
imagemagick
|
|
libxml2
|
|
libxslt
|
|
];
|
|
writetopdfPath = lib.makeBinPath [
|
|
# shared
|
|
gzip
|
|
# writetopdf
|
|
wkhtmltopdf
|
|
pdftk
|
|
librsvg
|
|
];
|
|
in
|
|
# `SELF_CALL=xxx` prevents inkscape shananigans (see https://gitlab.com/inkscape/inkscape/-/issues/4716)
|
|
''
|
|
wrapProgram $out/bin/pdftowrite --prefix PATH : ${pdftowritePath} \
|
|
--set SELF_CALL=xxx
|
|
wrapProgram $out/bin/writetopdf --prefix PATH : ${writetopdfPath}
|
|
'';
|
|
|
|
nativeCheckInputs = [ versionCheckHook ];
|
|
versionCheckProgramArg = "--version";
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
meta = {
|
|
homepage = "https://github.com/apebl/pdftowrite";
|
|
description = "Utility that converts PDF to Stylus Labs Write documents, and vice versa";
|
|
platforms = lib.platforms.linux;
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ henrispriet ];
|
|
};
|
|
}
|