From 753ac6174d8c6ac54b441377d6f8b2890adb937c Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Wed, 13 Jun 2018 22:53:35 -0700 Subject: [PATCH] qrencode: 4.0.1 -> 4.0.2 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/qrencode/versions. These checks were done: - built on NixOS - /nix/store/cywxaw8h01kh5rvkhx7bh2738icds31s-qrencode-4.0.2/bin/qrencode passed the binary check. - 1 of 1 passed binary check by having a zero exit code. - 0 of 1 passed binary check by having the new version present in output. - found 4.0.2 with grep in /nix/store/cywxaw8h01kh5rvkhx7bh2738icds31s-qrencode-4.0.2 - directory tree listing: https://gist.github.com/93c7bac0fe3aae76a9ef5ebbd9fba7de - du listing: https://gist.github.com/2b0d6fa748528181bfed9cbb453ed75a --- pkgs/tools/graphics/qrencode/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/graphics/qrencode/default.nix b/pkgs/tools/graphics/qrencode/default.nix index 5620f5058a5f..8e186399d638 100644 --- a/pkgs/tools/graphics/qrencode/default.nix +++ b/pkgs/tools/graphics/qrencode/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, libpng, pkgconfig }: stdenv.mkDerivation rec { - name = "qrencode-4.0.1"; + name = "qrencode-4.0.2"; src = fetchurl { url = "${meta.homepage}/${name}.tar.bz2"; - sha256 = "0j7cqhjc0l6i99lzph51gakmcmfs74x483plna93r4ngz328knph"; + sha256 = "1d2q5d3v8g3hsi3h5jq4n177bjhf3kawms09immw7p187f6jgjy9"; }; buildInputs = [ libpng ];