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.
This commit is contained in:
Andreas Herrmann 2014-06-15 13:25:43 +02:00
parent 4528ebf509
commit c24e85f3a5

View file

@ -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";
};
}
}