Commit graph

6 commits

Author SHA1 Message Date
Jack Kelly b84a56bddb ultimate-oldschool-pc-font-pack: 1.0 -> 2.0 2020-08-16 10:24:55 +10:00
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
volth 08f68313a4 treewide: remove redundant rec 2019-08-28 11:07:32 +00:00
volth c9eb44eab3 data/fonts: cleanup
* make font derivations fixed-output where applicable
 * fix dead links
 * `stdenv.lib` -> `lib` where `stdenv` is not involved
 * remove `meta.platforms = [ unix ]` and `meta.platforms = [ linux ]` because the restriction has no sense for data packages
2019-05-13 06:03:31 +00:00
endgame a3ba62db23 ultimate-oldschool-pc-font-pack: simplify using fetchzip (#47313) 2018-09-29 21:49:37 +02:00
Jack Kelly 1def63c923 ultimate-oldschool-pc-font-pack: init at 1.0 2018-09-24 16:49:42 +10:00