nixpkgs/pkgs/shells/tcsh/default.nix

51 lines
1.5 KiB
Nix
Raw Normal View History

2018-06-09 10:47:28 +03:00
{ stdenv, fetchurl, fetchpatch
2021-01-05 05:30:56 +03:00
, ncurses
}:
2012-07-28 03:27:25 +04:00
stdenv.mkDerivation rec {
pname = "tcsh";
2021-01-05 05:30:56 +03:00
version = "6.22.03";
2017-01-26 05:38:20 +03:00
src = fetchurl {
2017-01-26 05:38:20 +03:00
urls = [
"http://ftp.funet.fi/pub/mirrors/ftp.astron.com/pub/tcsh/${pname}-${version}.tar.gz"
"ftp://ftp.astron.com/pub/tcsh/${pname}-${version}.tar.gz"
"ftp://ftp.funet.fi/pub/unix/shells/tcsh/${pname}-${version}.tar.gz"
2017-01-26 05:38:20 +03:00
];
2021-01-05 05:30:56 +03:00
sha256 = "sha256-viz9ZT0qDH9QbS3RTBIyS6dJvUhAN75t9Eo5c/UiYrc=";
};
2016-04-11 02:39:00 +03:00
buildInputs = [ ncurses ];
2018-06-09 10:47:28 +03:00
patches = stdenv.lib.optional stdenv.hostPlatform.isMusl
(fetchpatch {
name = "sysmalloc.patch";
url = "https://git.alpinelinux.org/aports/plain/community/tcsh/001-sysmalloc.patch?id=184585c046cdd56512f1a76e426dd799b368f8cf";
2018-06-09 10:47:28 +03:00
sha256 = "1qc6ydxhdfizsbkaxhpn3wib8sfphrw10xnnsxx2prvzg9g2zp67";
});
2021-01-05 05:30:56 +03:00
meta = with stdenv.lib; {
2016-04-11 02:39:00 +03:00
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
'';
2020-04-07 16:25:32 +03:00
homepage = "https://www.tcsh.org/";
2016-04-11 02:39:00 +03:00
license = licenses.bsd2;
maintainers = with maintainers; [ AndersonTorres ];
2018-06-09 11:14:29 +03:00
platforms = platforms.linux ++ platforms.darwin;
};
2016-05-14 16:03:25 +03:00
passthru = {
shellPath = "/bin/tcsh";
};
}