Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
base: 36da345caa1e
Choose a base ref
...
head repository: NixOS/nixpkgs
compare: 80a274099111
Choose a head ref
  • 2 commits
  • 77 files changed
  • 2 contributors

Commits on Jan 22, 2020

  1. 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
    ```
    Synthetica9 committed Jan 22, 2020
    Copy the full SHA
    593e11f View commit details
    Browse the repository at this point in the history

Commits on Jan 27, 2020

  1. Merge pull request #78265 from Synthetica9/https-homepages

    treewide: fix redirected urls
    infinisil committed Jan 27, 2020
    Copy the full SHA
    80a2740 View commit details
    Browse the repository at this point in the history