From c24e85f3a5269e7d5d664620f755334b19b64caa Mon Sep 17 00:00:00 2001 From: Andreas Herrmann Date: Sun, 15 Jun 2014 13:25:43 +0200 Subject: [PATCH] szip: Fix source hash The hash code of the downloaded source tar-ball was not identical to the one specified in the nix-expression. This commit fixes that problem. --- pkgs/development/libraries/szip/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/szip/default.nix b/pkgs/development/libraries/szip/default.nix index 38cde3bfd70..159b8e6e838 100644 --- a/pkgs/development/libraries/szip/default.nix +++ b/pkgs/development/libraries/szip/default.nix @@ -4,6 +4,6 @@ stdenv.mkDerivation { name = "szip-2.1"; src = fetchurl { url = ftp://ftp.hdfgroup.org/lib-external/szip/2.1/src/szip-2.1.tar.gz; - sha256 = "05707lrdhwp8mv0dgzh2b6m2mwamv1z6k29m2v1v7pz0c1w2gb6z"; + sha256 = "1vym7r4by02m0yqj10023xyps5b21ryymnxb4nb2gs32arfxj5m8"; }; -} \ No newline at end of file +}