summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2021-01-31 19:30:00 +0100
committerGitHub <noreply@github.com>2021-01-31 19:30:00 +0100
commit50a03beacb11324197dc44a0f214d932329e9129 (patch)
tree08806f87c5f6c9945e940eff9c2eaaf9d0fef85b
parent3ef8a645f978220c7f788ba85ba050e19f3fa37a (diff)
parent21bbf719acbc7adbe694718fb62938b67a731fd1 (diff)
Merge pull request #111479 from twhitehead/tcsh
tcsh: workaround source moving to old subdirectory after new release
-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 8f4a1664467b..4d6c9556501c 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=";
};