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
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: cdfda4b455d0
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: ce283f055bd6
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Apr 17, 2020

  1. mesa-glu: use HTTPS instead of FTP

    FTP is often blocked by firewalls and is generally slower and less secure than HTTPS.
    
    No change to `src` hash.
    bhipple committed Apr 17, 2020
    Copy the full SHA
    ba8c116 View commit details
  2. Merge pull request #85448 from bhipple/fix/mesa-glu

    mesa-glu: use HTTPS instead of FTP
    adisbladis authored Apr 17, 2020
    Copy the full SHA
    ce283f0 View commit details
Showing with 1 addition and 1 deletion.
  1. +1 −1 pkgs/development/libraries/mesa-glu/default.nix
2 changes: 1 addition & 1 deletion pkgs/development/libraries/mesa-glu/default.nix
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@ stdenv.mkDerivation rec {
version = "9.0.1";

src = fetchurl {
url = "ftp://ftp.freedesktop.org/pub/mesa/${pname}/${pname}-${version}.tar.xz";
url = "https://mesa.freedesktop.org/archive/${pname}/${pname}-${version}.tar.xz";
sha256 = "1g2m634p73mixkzv1qz1d0flwm390ydi41bwmchiqvdssqnlqnpv";
};