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