summary refs log tree commit diff
path: root/pkgs/shells/tcsh
diff options
context:
space:
mode:
authorArmijn Hemel <armijn@gpl-violations.org>2005-10-24 15:15:34 +0000
committerArmijn Hemel <armijn@gpl-violations.org>2005-10-24 15:15:34 +0000
commite473e8691c067b4aafd2f428c930d11922b4802a (patch)
tree3b35dc6a8bfc7188921bbb79349468eeff70fadf /pkgs/shells/tcsh
parentd785903b0598b6b7d085ca2575ca1eb333f1761a (diff)
downloadnixpkgs-e473e8691c067b4aafd2f428c930d11922b4802a.tar
nixpkgs-e473e8691c067b4aafd2f428c930d11922b4802a.tar.gz
nixpkgs-e473e8691c067b4aafd2f428c930d11922b4802a.tar.bz2
nixpkgs-e473e8691c067b4aafd2f428c930d11922b4802a.tar.lz
nixpkgs-e473e8691c067b4aafd2f428c930d11922b4802a.tar.xz
nixpkgs-e473e8691c067b4aafd2f428c930d11922b4802a.tar.zst
nixpkgs-e473e8691c067b4aafd2f428c930d11922b4802a.zip
add tcsh
svn path=/nixpkgs/trunk/; revision=4123
Diffstat (limited to 'pkgs/shells/tcsh')
-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 00000000000..cd374289d54
--- /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];
+}