summary refs log tree commit diff
path: root/pkgs/development/libraries/qpdf
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2017-11-11 10:24:48 +0100
committerVladimír Čunát <vcunat@gmail.com>2017-11-11 10:24:48 +0100
commit6255e95a3d570d0ac17cac9483a2c9da7a1b619e (patch)
tree8c6fe02f01b241ccb01adc6ea9e6241a598ae731 /pkgs/development/libraries/qpdf
parentb6fd7bfd040aeea0990a175c161a72d89b97281f (diff)
downloadnixpkgs-6255e95a3d570d0ac17cac9483a2c9da7a1b619e.tar
nixpkgs-6255e95a3d570d0ac17cac9483a2c9da7a1b619e.tar.gz
nixpkgs-6255e95a3d570d0ac17cac9483a2c9da7a1b619e.tar.bz2
nixpkgs-6255e95a3d570d0ac17cac9483a2c9da7a1b619e.tar.lz
nixpkgs-6255e95a3d570d0ac17cac9483a2c9da7a1b619e.tar.xz
nixpkgs-6255e95a3d570d0ac17cac9483a2c9da7a1b619e.tar.zst
nixpkgs-6255e95a3d570d0ac17cac9483a2c9da7a1b619e.zip
qpdf: nitpicks after update
I read the release notes.
http://qpdf.sourceforge.net/files/qpdf-manual.html#ref.release-notes
Diffstat (limited to 'pkgs/development/libraries/qpdf')
-rw-r--r--pkgs/development/libraries/qpdf/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/libraries/qpdf/default.nix b/pkgs/development/libraries/qpdf/default.nix
index e53ad00cf7d..e2c80e445e7 100644
--- a/pkgs/development/libraries/qpdf/default.nix
+++ b/pkgs/development/libraries/qpdf/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, libjpeg, pcre, zlib, perl }:
+{ stdenv, fetchurl, libjpeg, zlib, perl }:
 
 let version = "7.0.0";
 in
@@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
 
   nativeBuildInputs = [ perl ];
 
-  buildInputs = [ pcre zlib libjpeg ];
+  buildInputs = [ zlib libjpeg ];
 
   postPatch = ''
     patchShebangs qpdf/fix-qdf
@@ -28,7 +28,7 @@ stdenv.mkDerivation rec {
   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.artistic2;
+    license = licenses.asl20; # as of 7.0.0, people may stay at artistic2
     maintainers = with maintainers; [ abbradar ];
     platforms = platforms.all;
   };