nixpkgs/pkgs/development/libraries/qpdf/default.nix

36 lines
885 B
Nix
Raw Normal View History

{ stdenv, fetchurl, fetchpatch, libjpeg, zlib, perl }:
2014-11-05 05:28:33 +03:00
let version = "8.2.1";
2014-11-05 05:28:33 +03:00
in
stdenv.mkDerivation rec {
name = "qpdf-${version}";
src = fetchurl {
url = "mirror://sourceforge/qpdf/qpdf/${version}/${name}.tar.gz";
sha256 = "1jdb0jj72fjdp6xip4m7yz31r5x13zs7h4smnxsycgw3vbmx6igl";
2014-11-05 05:28:33 +03:00
};
nativeBuildInputs = [ perl ];
buildInputs = [ zlib libjpeg ];
2014-11-05 05:28:33 +03:00
postPatch = ''
patchShebangs qpdf/fix-qdf
2014-11-05 05:28:33 +03:00
'';
preCheck = ''
patchShebangs qtest/bin/qtest-driver
2014-11-05 05:28:33 +03:00
'';
doCheck = true;
2016-01-13 19:07:42 +03:00
enableParallelBuilding = true;
2014-11-05 05:28:33 +03:00
meta = with stdenv.lib; {
homepage = http://qpdf.sourceforge.net/;
2014-11-05 05:28:33 +03:00
description = "A C++ library and set of programs that inspect and manipulate the structure of PDF files";
license = licenses.asl20; # as of 7.0.0, people may stay at artistic2
maintainers = with maintainers; [ abbradar ];
2014-11-05 05:28:33 +03:00
platforms = platforms.all;
};
}