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 Merge branch 'master' into flip-map-foreach 2019-08-18 18:00:25 +03:00
eval-config.nix nixos: doc: optionally include all modules in manual generation 2019-03-05 09:41:40 +00:00
from-env.nix
make-channel.nix Remove incorrect sentence from make-channel comment 2018-11-04 20:45:49 +01:00
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 installer: Adds AArch64 UEFI installer support. 2018-12-12 19:26:34 -05:00
make-squashfs.nix kernel config: add support for CONFIG_SQUASHFS_ZSTD (#52967) 2019-01-17 15:24:44 +02:00
make-system-tarball.nix use closure-info for building system tarball 2018-11-07 12:52:53 +08:00
make-system-tarball.sh use closure-info for building system tarball 2018-11-07 12:52:53 +08:00
qemu-flags.nix treewide: remove redundant quotes 2019-08-26 21:40:19 +00:00
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