Files
nixpkgs/pkgs/by-name/pd/pdfmm/package.nix
Dark Steveneq 646b892680
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
push sheeet
2025-10-09 14:15:47 +02:00

61 lines
1.2 KiB
Nix

{
bash,
coreutils,
fetchFromGitHub,
ghostscript,
locale,
zenity,
gnused,
lib,
resholve,
}:
resholve.mkDerivation {
pname = "pdfmm";
version = "unstable-2019-01-24";
src = fetchFromGitHub {
owner = "jpfleury";
repo = "pdfmm";
rev = "45ee7796659d23bb030bf06647f1af85e1d2b52d";
hash = "sha256-TOISD/2g7MwnLrtpMnfr2Ln0IiwlJVNavWl4eh/uwN0=";
};
dontBuild = true;
installPhase = ''
install -Dm 0755 pdfmm $out/bin/pdfmm
'';
solutions.default = {
scripts = [
"bin/pdfmm"
];
interpreter = "${bash}/bin/bash";
inputs = [
coreutils
ghostscript
locale
zenity
gnused
];
fake = {
# only need xmessage if zenity is unavailable
external = [ "xmessage" ];
};
execer = [
"cannot:${zenity}/bin/zenity"
];
keep."$toutLu" = true;
};
meta = with lib; {
description = "Graphical assistant to reduce the size of a PDF file";
homepage = "https://github.com/jpfleury/pdfmm";
license = licenses.gpl3Only;
maintainers = with maintainers; [ urandom ];
mainProgram = "pdfmm";
platforms = platforms.linux ++ platforms.darwin;
};
}