linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / libraries / szip / default.nix
blobf6d0c619c770d8c1fcff749bccf9a44311b63c2a
1 { lib, stdenv, fetchurl }:
3 stdenv.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   };
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   };