2019-06-16 20:59:06 +01:00
|
|
|
{ stdenv, fetchurl, libjpeg, zlib, perl }:
|
2014-11-05 02:28:33 +00:00
|
|
|
|
2020-02-02 06:33:39 +00:00
|
|
|
let version = "9.1.1";
|
2014-11-05 02:28:33 +00:00
|
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-13 22:52:01 +01:00
|
|
|
pname = "qpdf";
|
|
|
|
inherit version;
|
2014-11-05 02:28:33 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-13 22:52:01 +01:00
|
|
|
url = "mirror://sourceforge/qpdf/qpdf/${version}/${pname}-${version}.tar.gz";
|
2020-02-02 06:33:39 +00:00
|
|
|
sha256 = "0dj27wb9xg6pg95phbflfvy9rwxn1gh3kc4n175g0pf41r0zrim2";
|
2014-11-05 02:28:33 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ perl ];
|
|
|
|
|
2017-11-11 09:24:48 +00:00
|
|
|
buildInputs = [ zlib libjpeg ];
|
2014-11-05 02:28:33 +00:00
|
|
|
|
|
|
|
postPatch = ''
|
2015-01-08 09:26:49 +00:00
|
|
|
patchShebangs qpdf/fix-qdf
|
2014-11-05 02:28:33 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
preCheck = ''
|
2015-01-08 09:26:49 +00:00
|
|
|
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; {
|
2020-04-01 02:11:51 +01:00
|
|
|
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";
|
2017-11-11 09:24:48 +00:00
|
|
|
license = licenses.asl20; # as of 7.0.0, people may stay at artistic2
|
2015-05-14 18:09:10 +01:00
|
|
|
maintainers = with maintainers; [ abbradar ];
|
2014-11-05 02:28:33 +00:00
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|