nixpkgs/pkgs/development/libraries/szip/default.nix
RAPHAEL BACHER raphael.bacher@univ-grenoble-alpes.fr 46427a1b0b szip: fix url (previous ftp is now private)
2018-10-15 16:29:18 +02:00

17 lines
497 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "szip-${version}";
version = "2.1.1";
src = fetchurl {
url = "https://support.hdfgroup.org/ftp/lib-external/szip/${version}/src/szip-${version}.tar.gz";
sha256 = "04nlhkzzf1gihvrfbzc6rq4kc13p92ly39dzrb4y4jrd9y5rbvi1";
};
meta = {
description = "Compression library that can be used with the hdf5 library";
homepage = http://www.hdfgroup.org/doc_resource/SZIP/;
license = stdenv.lib.licenses.unfree;
};
}