summaryrefslogtreecommitdiffstats
path: root/pkgs/shells
diff options
context:
space:
mode:
authorAndersonTorres <torres.anderson.85@protonmail.com>2021-11-18 17:42:34 -0300
committerAndersonTorres <torres.anderson.85@protonmail.com>2021-11-18 18:04:05 -0300
commit7f08416298a8a601b2f949cc1a0b63b68568f264 (patch)
tree79a75af9c0c39afed3f975fbf8463d8b26c2126f /pkgs/shells
parent71f6dcfcc234ef35f9b16b9a3acc747a679755a4 (diff)
tcsh: 6.22.04 -> 6.23.00
Diffstat (limited to 'pkgs/shells')
-rw-r--r--pkgs/shells/tcsh/default.nix27
1 files changed, 16 insertions, 11 deletions
diff --git a/pkgs/shells/tcsh/default.nix b/pkgs/shells/tcsh/default.nix
index 4fd4e5730a4e..9a5bf59f18ea 100644
--- a/pkgs/shells/tcsh/default.nix
+++ b/pkgs/shells/tcsh/default.nix
@@ -1,24 +1,31 @@
-{ lib, stdenv, fetchurl, fetchpatch
+{ lib
+, stdenv
+, fetchurl
+, fetchpatch
, ncurses
}:
stdenv.mkDerivation rec {
pname = "tcsh";
- version = "6.22.04";
+ version = "6.23.00";
src = fetchurl {
urls = [
- "http://ftp.funet.fi/pub/mirrors/ftp.astron.com/pub/tcsh/${pname}-${version}.tar.gz"
+ "https://astron.com/pub/tcsh/old/${pname}-${version}.tar.gz"
+ "https://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"
+ "http://ftp.funet.fi/pub/mirrors/ftp.astron.com/pub/tcsh/${pname}-${version}.tar.gz"
"ftp://ftp.funet.fi/pub/unix/shells/tcsh/old/${pname}-${version}.tar.gz"
+ "ftp://ftp.funet.fi/pub/unix/shells/tcsh/${pname}-${version}.tar.gz"
+ "ftp://ftp.astron.com/pub/tcsh/old/${pname}-${version}.tar.gz"
+ "ftp://ftp.astron.com/pub/tcsh/${pname}-${version}.tar.gz"
];
- hash = "sha256-6xY1YkMhjDLzngcljXK/iyHmLOlLsOipXjGLFROX4jE=";
+ hash = "sha256-Tr6y8zYz0RXZU19VTGUahSMEDY2R5d4zP7LuBFuOAB4=";
};
- buildInputs = [ ncurses ];
+ buildInputs = [
+ ncurses
+ ];
patches = lib.optional stdenv.hostPlatform.isMusl
(fetchpatch {
@@ -47,7 +54,5 @@ stdenv.mkDerivation rec {
platforms = platforms.unix;
};
- passthru = {
- shellPath = "/bin/tcsh";
- };
+ passthru.shellPath = "/bin/tcsh";
}