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

36 lines
827 B
Nix
Raw Normal View History

2014-11-05 02:28:33 +00:00
{ stdenv, fetchurl, pcre, zlib, perl }:
2016-01-13 16:07:42 +00:00
let version = "6.0.0";
2014-11-05 02:28:33 +00:00
in
stdenv.mkDerivation rec {
name = "qpdf-${version}";
src = fetchurl {
url = "mirror://sourceforge/qpdf/qpdf/${version}/${name}.tar.gz";
2016-01-13 16:07:42 +00:00
sha256 = "0csj2p2gkxrc0rk8ykymlsdgfas96vzf1dip3y1x7z1q9plwgzd9";
2014-11-05 02:28:33 +00:00
};
nativeBuildInputs = [ perl ];
buildInputs = [ pcre zlib ];
postPatch = ''
patchShebangs qpdf/fix-qdf
2014-11-05 02:28:33 +00:00
'';
preCheck = ''
patchShebangs qtest/bin/qtest-driver
2014-11-05 02:28:33 +00:00
'';
doCheck = true;
2016-01-13 16:07:42 +00:00
enableParallelBuilding = true;
2014-11-05 02:28:33 +00:00
meta = with stdenv.lib; {
homepage = http://qpdf.sourceforge.net/;
2014-11-05 02:28:33 +00:00
description = "A C++ library and set of programs that inspect and manipulate the structure of PDF files";
2015-04-21 16:05:19 +00:00
license = licenses.artistic2;
maintainers = with maintainers; [ abbradar ];
2014-11-05 02:28:33 +00:00
platforms = platforms.all;
};
}