about summary refs log tree commit diff
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2019-10-24 02:52:51 -0700
committerRenaud <c0bw3b@users.noreply.github.com>2019-10-24 11:52:51 +0200
commit12c9003b0208866c7e95b7d3a92bcae559c6424a (patch)
tree50f3ed1d3611bc7329c4dfc60d2ea3f8b630fc5f
parentafc43c30ec075036eb0b5e698ea0bd918c0dec9f (diff)
downloadnixlib-12c9003b0208866c7e95b7d3a92bcae559c6424a.tar
nixlib-12c9003b0208866c7e95b7d3a92bcae559c6424a.tar.gz
nixlib-12c9003b0208866c7e95b7d3a92bcae559c6424a.tar.bz2
nixlib-12c9003b0208866c7e95b7d3a92bcae559c6424a.tar.lz
nixlib-12c9003b0208866c7e95b7d3a92bcae559c6424a.tar.xz
nixlib-12c9003b0208866c7e95b7d3a92bcae559c6424a.tar.zst
nixlib-12c9003b0208866c7e95b7d3a92bcae559c6424a.zip
qpdf: 9.0.1 -> 9.0.2 (#71856)
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
-rw-r--r--pkgs/development/libraries/qpdf/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/qpdf/default.nix b/pkgs/development/libraries/qpdf/default.nix
index 81606a4e28e3..5cdde468416d 100644
--- a/pkgs/development/libraries/qpdf/default.nix
+++ b/pkgs/development/libraries/qpdf/default.nix
@@ -1,6 +1,6 @@
 { stdenv, fetchurl, libjpeg, zlib, perl }:
 
-let version = "9.0.1";
+let version = "9.0.2";
 in
 stdenv.mkDerivation rec {
   pname = "qpdf";
@@ -8,7 +8,7 @@ stdenv.mkDerivation rec {
 
   src = fetchurl {
     url = "mirror://sourceforge/qpdf/qpdf/${version}/${pname}-${version}.tar.gz";
-    sha256 = "0lhgb82s2402ad2yiswkj227vjlw9zypphdfdivfkbril7dg6495";
+    sha256 = "0b6jhhsifgiwrznxxi3h7hqm7bi91wph65jjbvs4g2860vcm296h";
   };
 
   nativeBuildInputs = [ perl ];