Files
nixpkgs/pkgs/by-name/dj/djvu2pdf/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

45 lines
886 B
Nix

{
lib,
stdenv,
makeWrapper,
fetchurl,
djvulibre,
ghostscript,
which,
}:
stdenv.mkDerivation rec {
version = "0.9.2";
pname = "djvu2pdf";
src = fetchurl {
url = "http://0x2a.at/site/projects/djvu2pdf/djvu2pdf-${version}.tar.gz";
sha256 = "0v2ax30m7j1yi4m02nzn9rc4sn4vzqh5vywdh96r64j4pwvn5s5g";
};
nativeBuildInputs = [ makeWrapper ];
installPhase = ''
mkdir -p $out/bin
cp -p djvu2pdf $out/bin
wrapProgram $out/bin/djvu2pdf --prefix PATH : ${
lib.makeBinPath [
ghostscript
djvulibre
which
]
}
mkdir -p $out/man/man1
cp -p djvu2pdf.1.gz $out/man/man1
'';
meta = {
description = "Convert DjVu files to PDF files";
homepage = "https://0x2a.at/site/projects/djvu2pdf/";
license = lib.licenses.gpl1Only;
platforms = lib.platforms.all;
mainProgram = "djvu2pdf";
};
}