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)"; + }; }