summaryrefslogtreecommitdiffstats
path: root/pkgs/shells
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/shells')
-rw-r--r--pkgs/shells/tcsh/default.nix10
1 files changed, 10 insertions, 0 deletions
diff --git a/pkgs/shells/tcsh/default.nix b/pkgs/shells/tcsh/default.nix
new file mode 100644
index 000000000000..cd374289d543
--- /dev/null
+++ b/pkgs/shells/tcsh/default.nix
@@ -0,0 +1,10 @@
+{stdenv, fetchurl, ncurses}:
+
+stdenv.mkDerivation {
+ name = "tcsh-6.14.00";
+ src = fetchurl {
+ url = ftp://ftp.gw.com/pub/unix/tcsh/tcsh-6.14.00.tar.gz;
+ md5 = "353d1bb7d2741bf8de602c7b6f0efd79";
+ };
+ buildInputs = [ncurses];
+}