forked from mirrors/nixpkgs
* tcsh: create a "csh" symlink.
svn path=/nixpkgs/trunk/; revision=15950
This commit is contained in:
parent
97ad35b531
commit
7442d90d32
|
@ -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)";
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue