summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@viric.name>2014-12-09 14:35:54 +0100
committerLluís Batlle i Rossell <viric@viric.name>2014-12-09 14:35:54 +0100
commit0420a025e3d702df17a672f36627d32b488b4bfc (patch)
tree16c1c266ddb25edba8b63520396437990abbbdd8
parentnss: security update fixing CVE-2014-1569 (diff)
downloadnixpkgs-0420a025e3d702df17a672f36627d32b488b4bfc.tar.gz
Updating xpdf to 3.04
-rw-r--r--pkgs/applications/misc/xpdf/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/applications/misc/xpdf/default.nix b/pkgs/applications/misc/xpdf/default.nix
index fdcdd4770d0e..2e690dcce090 100644
--- a/pkgs/applications/misc/xpdf/default.nix
+++ b/pkgs/applications/misc/xpdf/default.nix
@@ -1,5 +1,5 @@
{ enableGUI ? true, enablePDFtoPPM ? true, useT1Lib ? false
-, stdenv, fetchurl, x11 ? null, motif ? null, freetype ? null, t1lib ? null
+, stdenv, fetchurl, zlib, libpng, x11 ? null, motif ? null, freetype ? null, t1lib ? null
, base14Fonts ? null
}:
@@ -10,14 +10,14 @@ assert useT1Lib -> t1lib != null;
assert !useT1Lib; # t1lib has multiple unpatched security vulnerabilities
stdenv.mkDerivation {
- name = "xpdf-3.03";
+ name = "xpdf-3.04";
src = fetchurl {
- url = ftp://ftp.foolabs.com/pub/xpdf/xpdf-3.03.tar.gz;
- sha256 = "1jnfzdqc54wa73lw28kjv0m7120mksb0zkcn81jdlvijyvc67kq2";
+ url = ftp://ftp.foolabs.com/pub/xpdf/xpdf-3.04.tar.gz;
+ sha256 = "1rbp54mr3z2x3a3a1qmz8byzygzi223vckfam9ib5g1sfds0qf8i";
};
- buildInputs =
+ buildInputs = [ zlib libpng ] ++
stdenv.lib.optionals enableGUI [x11 motif] ++
stdenv.lib.optional useT1Lib t1lib ++
stdenv.lib.optional enablePDFtoPPM freetype;