qpdf: 8.0.0 -> 8.0.2

Semi-automatic update generated by https://github.com/ryantm/nix-update tools.

This update was made based on information from https://repology.org/metapackage/qpdf/versions.

These checks were done:

- built on NixOS
- ran `/nix/store/ck7mhavin0im813rf4hawqswmrg47pc8-qpdf-8.0.2/bin/fix-qdf --version` and found version 8.0.2
- ran `/nix/store/ck7mhavin0im813rf4hawqswmrg47pc8-qpdf-8.0.2/bin/qpdf --help` got 0 exit code
- ran `/nix/store/ck7mhavin0im813rf4hawqswmrg47pc8-qpdf-8.0.2/bin/qpdf --version` and found version 8.0.2
- found 8.0.2 with grep in /nix/store/ck7mhavin0im813rf4hawqswmrg47pc8-qpdf-8.0.2
- directory tree listing: https://gist.github.com/3d0da50b8418a253f7a33f8df1e1ed7f
This commit is contained in:
R. RyanTM 2018-03-30 17:40:13 -07:00 committed by Nikolay Amiantov
parent f5adb580d9
commit 3573045541

View File

@ -1,13 +1,13 @@
{ stdenv, fetchurl, libjpeg, zlib, perl }:
let version = "8.0.0";
let version = "8.0.2";
in
stdenv.mkDerivation rec {
name = "qpdf-${version}";
src = fetchurl {
url = "mirror://sourceforge/qpdf/qpdf/${version}/${name}.tar.gz";
sha256 = "01a1d5wyrj1m35d68yj0cyqfjyrwhxq2yqwaw5an1d1p4aaid8gz";
sha256 = "1hf8jfjar8p7v288d7ccmr8w171mv9kb86b6hq1nk58mnlq1g7mh";
};
nativeBuildInputs = [ perl ];