3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/libraries/szip/default.nix
Andreas Herrmann c24e85f3a5 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.
2014-06-22 20:05:20 +02:00

10 lines
255 B
Nix

{ stdenv, fetchurl }:
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 = "1vym7r4by02m0yqj10023xyps5b21ryymnxb4nb2gs32arfxj5m8";
};
}