summary refs log tree commit diff
path: root/pkgs/shells/tcsh
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2009-06-13 16:09:26 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2009-06-13 16:09:26 +0000
commit7442d90d32eab458d6c206a97680fd4a1705c0de (patch)
tree354bd55af70f0f45ecd4d35f0a270ace70268d7b /pkgs/shells/tcsh
parent97ad35b5317c2bd1bdae264d3bebfa9073eff52b (diff)
downloadnixpkgs-7442d90d32eab458d6c206a97680fd4a1705c0de.tar
nixpkgs-7442d90d32eab458d6c206a97680fd4a1705c0de.tar.gz
nixpkgs-7442d90d32eab458d6c206a97680fd4a1705c0de.tar.bz2
nixpkgs-7442d90d32eab458d6c206a97680fd4a1705c0de.tar.lz
nixpkgs-7442d90d32eab458d6c206a97680fd4a1705c0de.tar.xz
nixpkgs-7442d90d32eab458d6c206a97680fd4a1705c0de.tar.zst
nixpkgs-7442d90d32eab458d6c206a97680fd4a1705c0de.zip
* tcsh: create a "csh" symlink.
svn path=/nixpkgs/trunk/; revision=15950
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 56f446c2e51..9e5fa7dae0f 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)";
+  };
 }