nixpkgs/pkgs/tools/typesetting/pdf2djvu/default.nix

72 lines
1.5 KiB
Nix
Raw Normal View History

2020-03-06 03:49:52 +00:00
{ stdenv
, lib
, fetchFromGitHub
, fetchpatch
2020-03-06 03:49:52 +00:00
, autoreconfHook
, gettext
, libtool
, pkg-config
2020-03-06 03:49:52 +00:00
, djvulibre
, exiv2
, fontconfig
, graphicsmagick
, libjpeg
, libuuid
, poppler
}:
stdenv.mkDerivation rec {
2020-08-11 10:17:28 +00:00
version = "0.9.17.1";
pname = "pdf2djvu";
2020-03-06 03:49:52 +00:00
src = fetchFromGitHub {
owner = "jwilk";
repo = "pdf2djvu";
rev = version;
2020-08-11 10:17:28 +00:00
sha256 = "1igabfy3fd7qndihmkfk9incc15pjxpxh2cn5pfw5fxfwrpjrarn";
};
patches = [
# Not included in 0.9.17.1, but will be in the next version.
(fetchpatch {
name = "no-poppler-splash.patch";
url = "https://github.com/jwilk/pdf2djvu/commit/2ec7eee57a47bbfd296badaa03dc20bf71b50201.patch";
sha256 = "03kap7k2j29r16qgl781cxpswzg3r2yn513cqycgl0vax2xj3gly";
})
];
nativeBuildInputs = [ autoreconfHook pkg-config ];
2020-03-06 03:49:52 +00:00
buildInputs = [
djvulibre
exiv2
fontconfig
graphicsmagick
libjpeg
libuuid
poppler
];
2020-03-06 03:49:52 +00:00
postPatch = ''
substituteInPlace private/autogen \
--replace /usr/share/gettext ${gettext}/share/gettext \
--replace /usr/share/libtool ${libtool}/share/libtool
2020-03-06 03:49:52 +00:00
substituteInPlace configure.ac \
--replace '$djvulibre_bin_path' ${djvulibre.bin}/bin
'';
2020-03-06 03:49:52 +00:00
preAutoreconf = ''
private/autogen
'';
enableParallelBuilding = true;
meta = with lib; {
description = "Creates djvu files from PDF files";
2020-03-06 03:49:52 +00:00
homepage = "https://jwilk.net/software/pdf2djvu";
license = licenses.gpl2;
maintainers = with maintainers; [ pSub ];
};
}