nixpkgs/pkgs/shells/tcsh/default.nix

43 lines
1.2 KiB
Nix
Raw Normal View History

2016-04-10 23:39:00 +00:00
{ stdenv, fetchurl
, ncurses }:
2012-07-27 23:27:25 +00:00
stdenv.mkDerivation rec {
2016-04-10 23:39:00 +00:00
name = "tcsh-${version}";
2017-01-26 02:38:20 +00:00
version = "6.20.00";
src = fetchurl {
2017-01-26 02:38:20 +00:00
urls = [
"http://ftp.funet.fi/pub/mirrors/ftp.astron.com/pub/tcsh/${name}.tar.gz"
"ftp://ftp.astron.com/pub/tcsh/${name}.tar.gz"
"ftp://ftp.funet.fi/pub/unix/shells/tcsh/${name}.tar.gz"
];
sha256 = "17ggxkkn5skl0v1x0j6hbv5l0sgnidfzwv16992sqkdm983fg7dq";
};
2016-04-10 23:39:00 +00:00
buildInputs = [ ncurses ];
2016-04-10 23:39:00 +00:00
meta = with stdenv.lib;{
description = "An enhanced version of the Berkeley UNIX C shell (csh)";
longDescription = ''
tcsh is an enhanced but completely compatible version of the
Berkeley UNIX C shell, csh. It is a command language interpreter
usable both as an interactive login shell and a shell script
command processor.
It includes:
- command-line editor
- programmable word completion
- spelling correction
- history mechanism
- job control
'';
homepage = http://www.tcsh.org/;
2016-04-10 23:39:00 +00:00
license = licenses.bsd2;
maintainers = with maintainers; [ AndersonTorres ];
platforms = platforms.linux;
};
2016-05-14 13:03:25 +00:00
passthru = {
shellPath = "/bin/tcsh";
};
}