summary refs log tree commit diff
path: root/pkgs/shells/tcsh/default.nix
diff options
context:
space:
mode:
authorTyson Whitehead <twhitehead@gmail.com>2021-01-31 11:20:43 -0500
committerTyson Whitehead <twhitehead@gmail.com>2021-01-31 12:13:21 -0500
commit21bbf719acbc7adbe694718fb62938b67a731fd1 (patch)
treec551c8cf2683eec6b1a5e48cca73753889b6945f /pkgs/shells/tcsh/default.nix
parente29bef4b9c817f21276e7b3ed0d3a34f64fdbc78 (diff)
downloadnixpkgs-21bbf719acbc7adbe694718fb62938b67a731fd1.tar
nixpkgs-21bbf719acbc7adbe694718fb62938b67a731fd1.tar.gz
nixpkgs-21bbf719acbc7adbe694718fb62938b67a731fd1.tar.bz2
nixpkgs-21bbf719acbc7adbe694718fb62938b67a731fd1.tar.lz
nixpkgs-21bbf719acbc7adbe694718fb62938b67a731fd1.tar.xz
nixpkgs-21bbf719acbc7adbe694718fb62938b67a731fd1.tar.zst
nixpkgs-21bbf719acbc7adbe694718fb62938b67a731fd1.zip
tcsh: workaround source moving to old subdirectory after new release
Diffstat (limited to 'pkgs/shells/tcsh/default.nix')
-rw-r--r--pkgs/shells/tcsh/default.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/shells/tcsh/default.nix b/pkgs/shells/tcsh/default.nix
index 8f4a1664467..4d6c9556501 100644
--- a/pkgs/shells/tcsh/default.nix
+++ b/pkgs/shells/tcsh/default.nix
@@ -9,8 +9,11 @@ stdenv.mkDerivation rec {
   src = fetchurl {
     urls = [
       "http://ftp.funet.fi/pub/mirrors/ftp.astron.com/pub/tcsh/${pname}-${version}.tar.gz"
+      "http://ftp.funet.fi/pub/mirrors/ftp.astron.com/pub/tcsh/old/${pname}-${version}.tar.gz"
       "ftp://ftp.astron.com/pub/tcsh/${pname}-${version}.tar.gz"
+      "ftp://ftp.astron.com/pub/tcsh/old/${pname}-${version}.tar.gz"
       "ftp://ftp.funet.fi/pub/unix/shells/tcsh/${pname}-${version}.tar.gz"
+      "ftp://ftp.funet.fi/pub/unix/shells/tcsh/old/${pname}-${version}.tar.gz"
     ];
     sha256 = "sha256-viz9ZT0qDH9QbS3RTBIyS6dJvUhAN75t9Eo5c/UiYrc=";
   };