summary refs log tree commit diff
path: root/pkgs/shells/tcsh
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/shells/tcsh')
-rw-r--r--pkgs/shells/tcsh/default.nix12
1 files changed, 12 insertions, 0 deletions
diff --git a/pkgs/shells/tcsh/default.nix b/pkgs/shells/tcsh/default.nix
index 56f446c2e510..9e5fa7dae0f3 100644
--- a/pkgs/shells/tcsh/default.nix
+++ b/pkgs/shells/tcsh/default.nix
@@ -2,9 +2,21 @@
 
 stdenv.mkDerivation {
   name = "tcsh-6.16.00";
+  
   src = fetchurl {
     url = ftp://ftp.funet.fi/pub/unix/shells/tcsh/tcsh-6.16.00.tar.gz;
     sha256 = "1m0p8lqqna3vpf2k4x3hia3rlrz38av67x7hb4qsiq2kfpbbh0vn";
   };
+  
   buildInputs = [ncurses];
+
+  postInstall =
+    ''
+      ln -s tcsh $out/bin/csh
+    '';
+
+  meta = {
+    homepage = http://www.tcsh.org/;
+    description = "An enhanced version of the Berkeley UNIX C shell (csh)";
+  };
 }