summary refs log tree commit diff
path: root/pkgs/development/libraries/qpdf
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2018-07-04 15:19:42 -0700
committerxeji <36407913+xeji@users.noreply.github.com>2018-07-05 00:19:42 +0200
commit84bf82aa26018b8ec78c0d3e64ee33fcdbe95837 (patch)
treef74e33d6949f1dd0e590dcfec50a8ac773eeec35 /pkgs/development/libraries/qpdf
parent6983256418a6acdff5ec16259be01d0d02e659bf (diff)
downloadnixpkgs-84bf82aa26018b8ec78c0d3e64ee33fcdbe95837.tar
nixpkgs-84bf82aa26018b8ec78c0d3e64ee33fcdbe95837.tar.gz
nixpkgs-84bf82aa26018b8ec78c0d3e64ee33fcdbe95837.tar.bz2
nixpkgs-84bf82aa26018b8ec78c0d3e64ee33fcdbe95837.tar.lz
nixpkgs-84bf82aa26018b8ec78c0d3e64ee33fcdbe95837.tar.xz
nixpkgs-84bf82aa26018b8ec78c0d3e64ee33fcdbe95837.tar.zst
nixpkgs-84bf82aa26018b8ec78c0d3e64ee33fcdbe95837.zip
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
Diffstat (limited to 'pkgs/development/libraries/qpdf')
-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 7622254afd9..0aa39532325 100644
--- a/pkgs/development/libraries/qpdf/default.nix
+++ b/pkgs/development/libraries/qpdf/default.nix
@@ -1,13 +1,13 @@
 { stdenv, fetchurl, fetchpatch, libjpeg, zlib, perl }:
 
-let version = "8.0.2";
+let version = "8.1.0";
 in
 stdenv.mkDerivation rec {
   name = "qpdf-${version}";
 
   src = fetchurl {
     url = "mirror://sourceforge/qpdf/qpdf/${version}/${name}.tar.gz";
-    sha256 = "1hf8jfjar8p7v288d7ccmr8w171mv9kb86b6hq1nk58mnlq1g7mh";
+    sha256 = "1m3hcgip6bzjx4gd7wq1328p8zi3pq5savzncdyln6l0lcklh7vx";
   };
 
   nativeBuildInputs = [ perl ];