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

44 lines
1.1 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, fetchpatch, libjpeg, zlib, perl }:
2014-11-05 02:28:33 +00:00
let version = "8.0.2";
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";
sha256 = "1hf8jfjar8p7v288d7ccmr8w171mv9kb86b6hq1nk58mnlq1g7mh";
2014-11-05 02:28:33 +00:00
};
nativeBuildInputs = [ perl ];
buildInputs = [ zlib libjpeg ];
2014-11-05 02:28:33 +00:00
patches = [
(fetchpatch {
name = "CVE-2018-9918.patch";
url = "https://github.com/qpdf/qpdf/commit/b4d6cf6836ce025ba1811b7bbec52680c7204223";
sha256 = "0mdqa9w1p6cmli6976v4wi0sw9r4p5prkj7lzfd1877wk11c9c73";
})
];
2014-11-05 02:28:33 +00:00
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";
license = licenses.asl20; # as of 7.0.0, people may stay at artistic2
maintainers = with maintainers; [ abbradar ];
2014-11-05 02:28:33 +00:00
platforms = platforms.all;
};
}