qpdf: 6.0.0 -> 7.0.0 (fixes several CVEs)
fixes CVE-2017-11624,CVE-2017-11625,CVE-2017-11626,CVE-2017-11627,CVE-2017-12595,CVE-2017-9208,CVE-2017-9209,CVE-2017-9210
This commit is contained in:
parent
8312eaf11c
commit
b6fd7bfd04
@ -1,18 +1,18 @@
|
|||||||
{ stdenv, fetchurl, pcre, zlib, perl }:
|
{ stdenv, fetchurl, libjpeg, pcre, zlib, perl }:
|
||||||
|
|
||||||
let version = "6.0.0";
|
let version = "7.0.0";
|
||||||
in
|
in
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "qpdf-${version}";
|
name = "qpdf-${version}";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://sourceforge/qpdf/qpdf/${version}/${name}.tar.gz";
|
url = "mirror://sourceforge/qpdf/qpdf/${version}/${name}.tar.gz";
|
||||||
sha256 = "0csj2p2gkxrc0rk8ykymlsdgfas96vzf1dip3y1x7z1q9plwgzd9";
|
sha256 = "0py6p27fx4qrwq9mvcybna42b0bdi359x38lzmggxl5a9khqvl7y";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ perl ];
|
nativeBuildInputs = [ perl ];
|
||||||
|
|
||||||
buildInputs = [ pcre zlib ];
|
buildInputs = [ pcre zlib libjpeg ];
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
patchShebangs qpdf/fix-qdf
|
patchShebangs qpdf/fix-qdf
|
||||||
|
Loading…
x
Reference in New Issue
Block a user