nixpkgs/nixos/lib
Patrick Hilhorst 593e11fd94
treewide: fix redirected urls
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
```
2020-01-22 11:26:22 +01:00
..
make-options-doc make-options-doc: fix string context issues 2019-11-23 15:40:45 +01:00
test-driver Merge pull request #77587 from singron/fix-shared 2020-01-19 22:07:31 +01:00
testing treewide: fix redirected urls 2020-01-22 11:26:22 +01:00
build-vms.nix
eval-config.nix
from-env.nix
make-channel.nix
make-disk-image.nix Revert "make-disk-image: replace nixos-install by nix-env calls" 2019-10-07 17:21:28 +02:00
make-ext4-fs.nix nixos: compress make-ext4-fs with zstd 2019-12-13 16:18:04 -08:00
make-iso9660-image.nix nixos/make-iso9660-image: Fix doc typo 2019-10-18 11:58:28 -07:00
make-iso9660-image.sh
make-squashfs.nix
make-system-tarball.nix
make-system-tarball.sh
qemu-flags.nix
testing-python.nix test-driver.py: specify coreutils dependency 2020-01-14 15:52:44 -08:00
testing.nix nixos/displayManager: deprecate separate options for default wm/dm 2019-12-15 04:16:20 +01:00
utils.nix nixos/lib/utils: Make the set recursive again, unbreak eval 2019-09-08 13:31:18 +02:00