mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-25 20:34:52 +03:00
* 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 {
|
stdenv.mkDerivation {
|
||||||
name = "tcsh-6.16.00";
|
name = "tcsh-6.16.00";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = ftp://ftp.funet.fi/pub/unix/shells/tcsh/tcsh-6.16.00.tar.gz;
|
url = ftp://ftp.funet.fi/pub/unix/shells/tcsh/tcsh-6.16.00.tar.gz;
|
||||||
sha256 = "1m0p8lqqna3vpf2k4x3hia3rlrz38av67x7hb4qsiq2kfpbbh0vn";
|
sha256 = "1m0p8lqqna3vpf2k4x3hia3rlrz38av67x7hb4qsiq2kfpbbh0vn";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ncurses];
|
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 New Issue
Block a user