nixpkgs/pkgs/development/libraries/qpdf/default.nix
R. RyanTM 84bf82aa26 qpdf: 8.0.2 -> 8.1.0 (#42684)
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/qpdf/versions.

These checks were done:

- built on NixOS
- /nix/store/razzvvhaim31v0qmv2f55y9w3659bdyy-qpdf-8.1.0/bin/fix-qdf passed the binary check.
- /nix/store/razzvvhaim31v0qmv2f55y9w3659bdyy-qpdf-8.1.0/bin/qpdf passed the binary check.
- /nix/store/razzvvhaim31v0qmv2f55y9w3659bdyy-qpdf-8.1.0/bin/zlib-flate passed the binary check.
- 3 of 3 passed binary check by having a zero exit code.
- 0 of 3 passed binary check by having the new version present in output.
- found 8.1.0 with grep in /nix/store/razzvvhaim31v0qmv2f55y9w3659bdyy-qpdf-8.1.0
- directory tree listing: https://gist.github.com/4bb6d8c7a59b4d3cfa1c78f0c45d9431
- du listing: https://gist.github.com/388a30c9e73f5667c8a8bb7a2740175e
2018-07-05 00:19:42 +02:00

44 lines
1.1 KiB
Nix

{ stdenv, fetchurl, fetchpatch, libjpeg, zlib, perl }:
let version = "8.1.0";
in
stdenv.mkDerivation rec {
name = "qpdf-${version}";
src = fetchurl {
url = "mirror://sourceforge/qpdf/qpdf/${version}/${name}.tar.gz";
sha256 = "1m3hcgip6bzjx4gd7wq1328p8zi3pq5savzncdyln6l0lcklh7vx";
};
nativeBuildInputs = [ perl ];
buildInputs = [ zlib libjpeg ];
patches = [
(fetchpatch {
name = "CVE-2018-9918.patch";
url = "https://github.com/qpdf/qpdf/commit/b4d6cf6836ce025ba1811b7bbec52680c7204223";
sha256 = "0mdqa9w1p6cmli6976v4wi0sw9r4p5prkj7lzfd1877wk11c9c73";
})
];
postPatch = ''
patchShebangs qpdf/fix-qdf
'';
preCheck = ''
patchShebangs qtest/bin/qtest-driver
'';
doCheck = true;
enableParallelBuilding = 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";
license = licenses.asl20; # as of 7.0.0, people may stay at artistic2
maintainers = with maintainers; [ abbradar ];
platforms = platforms.all;
};
}