summary refs log tree commit diff
path: root/pkgs/tools/security/sudo
diff options
context:
space:
mode:
authorBenjamin Hipple <bhipple@protonmail.com>2020-03-26 00:06:42 -0400
committerFrederik Rietdijk <freddyrietdijk@fridh.nl>2020-03-26 08:04:30 +0100
commite49a62439065191fc1432b447d37149557d92fc2 (patch)
tree9455c1e8e776a3e57b7120e1a1665092b596a9bc /pkgs/tools/security/sudo
parent69a8835157ef7fe42c365781a766d929b302fa47 (diff)
downloadnixpkgs-e49a62439065191fc1432b447d37149557d92fc2.tar
nixpkgs-e49a62439065191fc1432b447d37149557d92fc2.tar.gz
nixpkgs-e49a62439065191fc1432b447d37149557d92fc2.tar.bz2
nixpkgs-e49a62439065191fc1432b447d37149557d92fc2.tar.lz
nixpkgs-e49a62439065191fc1432b447d37149557d92fc2.tar.xz
nixpkgs-e49a62439065191fc1432b447d37149557d92fc2.tar.zst
nixpkgs-e49a62439065191fc1432b447d37149557d92fc2.zip
sudo: switch download from FTP to HTTPS
Many firewalls don't allow FTP traffic through; HTTPS should be preferred when
possible for both availability and performance.
Diffstat (limited to 'pkgs/tools/security/sudo')
-rw-r--r--pkgs/tools/security/sudo/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/tools/security/sudo/default.nix b/pkgs/tools/security/sudo/default.nix
index 30f45d100ad..e92ce05ad1a 100644
--- a/pkgs/tools/security/sudo/default.nix
+++ b/pkgs/tools/security/sudo/default.nix
@@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
   version = "1.8.31p1";
 
   src = fetchurl {
-    url = "ftp://ftp.sudo.ws/pub/sudo/${pname}-${version}.tar.gz";
+    url = "https://www.sudo.ws/dist/${pname}-${version}.tar.gz";
     sha256 = "1n0mdmgcs92af34xxsnsh1arrngymhdmwd9srjgjbk65q7xzsg67";
   };