nixpkgs/pkgs/development/libraries/szip/default.nix
zowoq 31f5dd3f36 treewide: editorconfig fixes
- remove trailing whitespace
- use spaces for indentation
2021-01-20 09:11:11 +10:00

17 lines
486 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
pname = "szip";
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 = "https://www.hdfgroup.org/doc_resource/SZIP/";
license = stdenv.lib.licenses.unfree;
};
}