summary refs log tree commit diff
path: root/pkgs/development/libraries/szip/default.nix
blob: 2419cf55442147aa1d3f4b58ae656a2e238f222e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ 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;
  };
}