nixpkgs/pkgs/shells/tcsh/default.nix

59 lines
1.9 KiB
Nix
Raw Normal View History

2021-11-18 21:42:34 +01:00
{ lib
, stdenv
, fetchurl
, fetchpatch
2021-01-05 03:30:56 +01:00
, ncurses
}:
2012-07-28 01:27:25 +02:00
stdenv.mkDerivation rec {
pname = "tcsh";
2022-01-04 04:18:20 +01:00
version = "6.23.02";
2017-01-26 03:38:20 +01:00
src = fetchurl {
2017-01-26 03:38:20 +01:00
urls = [
2021-11-18 21:42:34 +01:00
"https://astron.com/pub/tcsh/old/${pname}-${version}.tar.gz"
"https://astron.com/pub/tcsh/${pname}-${version}.tar.gz"
"http://ftp.funet.fi/pub/mirrors/ftp.astron.com/pub/tcsh/old/${pname}-${version}.tar.gz"
2021-11-18 21:42:34 +01:00
"http://ftp.funet.fi/pub/mirrors/ftp.astron.com/pub/tcsh/${pname}-${version}.tar.gz"
"ftp://ftp.funet.fi/pub/unix/shells/tcsh/old/${pname}-${version}.tar.gz"
2021-11-18 21:42:34 +01:00
"ftp://ftp.funet.fi/pub/unix/shells/tcsh/${pname}-${version}.tar.gz"
"ftp://ftp.astron.com/pub/tcsh/old/${pname}-${version}.tar.gz"
"ftp://ftp.astron.com/pub/tcsh/${pname}-${version}.tar.gz"
2017-01-26 03:38:20 +01:00
];
2022-01-04 04:18:20 +01:00
hash = "sha256-wD+AQFE2cxswkdpzWoHN2EgAhRAySrMl8jWv9wnkRus=";
};
2021-11-18 21:42:34 +01:00
buildInputs = [
ncurses
];
2021-01-15 07:28:56 +01:00
patches = lib.optional stdenv.hostPlatform.isMusl
2018-06-09 09:47:28 +02:00
(fetchpatch {
name = "sysmalloc.patch";
url = "https://git.alpinelinux.org/aports/plain/community/tcsh/001-sysmalloc.patch?id=184585c046cdd56512f1a76e426dd799b368f8cf";
2018-06-09 09:47:28 +02:00
sha256 = "1qc6ydxhdfizsbkaxhpn3wib8sfphrw10xnnsxx2prvzg9g2zp67";
});
meta = with lib; {
2021-08-01 05:11:43 +02:00
homepage = "https://www.tcsh.org/";
2016-04-11 01:39:00 +02:00
description = "An enhanced version of the Berkeley UNIX C shell (csh)";
longDescription = ''
2021-08-01 05:11:43 +02:00
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.
2016-04-11 01:39:00 +02:00
It includes:
- command-line editor
- programmable word completion
- spelling correction
- history mechanism
- job control
'';
2016-04-11 01:39:00 +02:00
license = licenses.bsd2;
maintainers = with maintainers; [ AndersonTorres ];
2021-08-01 05:11:43 +02:00
platforms = platforms.unix;
};
2016-05-14 15:03:25 +02:00
2021-11-18 21:42:34 +01:00
passthru.shellPath = "/bin/tcsh";
}