1{ lib, stdenv, fetchurl }:
2
3stdenv.mkDerivation rec {
4 pname = "szip";
5 version = "2.1.1";
6 src = fetchurl {
7 url = "https://support.hdfgroup.org/ftp/lib-external/szip/${version}/src/szip-${version}.tar.gz";
8 sha256 = "04nlhkzzf1gihvrfbzc6rq4kc13p92ly39dzrb4y4jrd9y5rbvi1";
9 };
10
11 meta = {
12 description = "Compression library that can be used with the hdf5 library";
13 homepage = "https://www.hdfgroup.org/doc_resource/SZIP/";
14 license = lib.licenses.unfree;
15 };
16}