about summary refs log tree commit diff
path: root/pkgs/development/tools/parsing/byacc
diff options
context:
space:
mode:
authorWill Dietz <w@wdtz.org>2018-01-02 12:15:48 -0600
committerWill Dietz <w@wdtz.org>2018-01-02 12:31:33 -0600
commit19f1fd14b3157d42ef51ae2b9c5a95e25f74b348 (patch)
treec79259868279ea517e33143d00b85a640ee11654 /pkgs/development/tools/parsing/byacc
parentc98eb9e9b982a33d00bb5ab7da8d646c63912e8e (diff)
invisible-island programs: Fix FTP URL's, use HTTPS, prefer ftp
FTP URL's should use ftp.invisible-island.net.
Diffstat (limited to 'pkgs/development/tools/parsing/byacc')
-rw-r--r--pkgs/development/tools/parsing/byacc/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/tools/parsing/byacc/default.nix b/pkgs/development/tools/parsing/byacc/default.nix
index c34eb9fc70841..ce8f7de1bbb86 100644
--- a/pkgs/development/tools/parsing/byacc/default.nix
+++ b/pkgs/development/tools/parsing/byacc/default.nix
@@ -6,8 +6,8 @@ stdenv.mkDerivation rec {
 
   src = fetchurl {
     urls = [
-      "ftp://invisible-island.net/byacc/${name}.tgz"
-      "http://invisible-mirror.net/archives/byacc/${name}.tgz"
+      "ftp://ftp.invisible-island.net/byacc/${name}.tgz"
+      "https://invisible-mirror.net/archives/byacc/${name}.tgz"
     ];
     sha256 = "90b768d177f91204e6e7cef226ae1dc7cac831b625774cebd3e233a917754f91";
   };