about summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorBenjamin Hipple <bhipple@protonmail.com>2020-04-17 11:35:16 -0400
committerBenjamin Hipple <bhipple@protonmail.com>2020-04-17 11:35:16 -0400
commitba8c11651963c0182658d5ad9cfd70b24c4f64d2 (patch)
treefe86a1a5056fee5520047abe10745b96a0d6e534 /pkgs/development
parentbc138f407f9cc1206dd13aa233f2d870936e10bd (diff)
downloadnixlib-ba8c11651963c0182658d5ad9cfd70b24c4f64d2.tar
nixlib-ba8c11651963c0182658d5ad9cfd70b24c4f64d2.tar.gz
nixlib-ba8c11651963c0182658d5ad9cfd70b24c4f64d2.tar.bz2
nixlib-ba8c11651963c0182658d5ad9cfd70b24c4f64d2.tar.lz
nixlib-ba8c11651963c0182658d5ad9cfd70b24c4f64d2.tar.xz
nixlib-ba8c11651963c0182658d5ad9cfd70b24c4f64d2.tar.zst
nixlib-ba8c11651963c0182658d5ad9cfd70b24c4f64d2.zip
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.
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/libraries/mesa-glu/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/libraries/mesa-glu/default.nix b/pkgs/development/libraries/mesa-glu/default.nix
index adcfeead4876..9679ddb94e8c 100644
--- a/pkgs/development/libraries/mesa-glu/default.nix
+++ b/pkgs/development/libraries/mesa-glu/default.nix
@@ -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";
   };