nixpkgs/pkgs/development/lua-modules
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
..
generic lua*Packages: Consolidate separate setup hooks together 2019-09-01 17:42:20 +02:00
bit32.patch luaPackages.bit32: Tiny patch to fix a LuaJIT-incompatible declaration 2019-06-20 23:20:02 +10:00
default.nix treewide: remove unused variables (#63177) 2019-06-16 19:59:05 +00:00
generated-packages.nix treewide: fix redirected urls 2020-01-22 11:26:22 +01:00
luuid.patch luaPackages: Replace all rockspec packages with generated ones 2019-06-14 13:17:15 +10:00
overrides.nix treewide: replace make/build/configure/patchFlags with nix lists 2019-12-30 12:58:11 +01:00
zip.patch Added more lua modules to lua-packages, added them as dependencies for 2014-09-30 07:42:19 +01:00