2014-11-05 05:28:33 +03:00
|
|
|
{ stdenv, fetchurl, pcre, zlib, perl }:
|
|
|
|
|
2015-07-28 11:53:14 +03:00
|
|
|
let version = "5.1.3";
|
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";
|
2015-07-28 11:53:14 +03:00
|
|
|
sha256 = "1lq1v7xghvl6p4hgrwbps3a13ad6lh4ib3myimb83hxgsgd4n5nm";
|
2014-11-05 05:28:33 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ perl ];
|
|
|
|
|
|
|
|
buildInputs = [ pcre zlib ];
|
|
|
|
|
|
|
|
postPatch = ''
|
2015-01-08 12:26:49 +03:00
|
|
|
patchShebangs qpdf/fix-qdf
|
2014-11-05 05:28:33 +03:00
|
|
|
'';
|
|
|
|
|
|
|
|
preCheck = ''
|
2015-01-08 12:26:49 +03:00
|
|
|
patchShebangs qtest/bin/qtest-driver
|
2014-11-05 05:28:33 +03:00
|
|
|
'';
|
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://qpdf.sourceforge.net/;
|
|
|
|
description = "A C++ library and set of programs that inspect and manipulate the structure of PDF files";
|
2015-04-21 19:05:19 +03:00
|
|
|
license = licenses.artistic2;
|
2015-05-14 20:09:10 +03:00
|
|
|
maintainers = with maintainers; [ abbradar ];
|
2014-11-05 05:28:33 +03:00
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|