593e11fd94
According to https://repology.org/repository/nix_unstable/problems, we have a lot of packages that have http links that redirect to https as their homepage. This commit updates all these packages to use the https links as their homepage. The following script was used to make these updates: ``` curl https://repology.org/api/v1/repository/nix_unstable/problems \ | jq '.[] | .problem' -r \ | rg 'Homepage link "(.+)" is a permanent redirect to "(.+)" and should be updated' --replace 's@$1@$2@' \ | sort | uniq > script.sed find -name '*.nix' | xargs -P4 -- sed -f script.sed -i ```
17 lines
488 B
Nix
17 lines
488 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;
|
|
};
|
|
}
|