2021-11-18 20:42:34 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchurl
|
2022-09-29 15:29:47 +00:00
|
|
|
, libxcrypt
|
2021-01-05 02:30:56 +00:00
|
|
|
, ncurses
|
2023-03-31 01:35:05 +00:00
|
|
|
, buildPackages
|
2021-01-05 02:30:56 +00:00
|
|
|
}:
|
2005-10-24 15:15:34 +00:00
|
|
|
|
2012-07-27 23:27:25 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "tcsh";
|
2023-01-07 08:46:51 +00:00
|
|
|
version = "6.24.07";
|
2017-01-26 02:38:20 +00:00
|
|
|
|
2005-10-24 15:15:34 +00:00
|
|
|
src = fetchurl {
|
2022-03-13 17:12:59 +00:00
|
|
|
url = "mirror://tcsh/${pname}-${version}.tar.gz";
|
2023-01-07 08:46:51 +00:00
|
|
|
hash = "sha256-dOTpgFy9lBPtNLT/odcvyNDvgaW3lHaFQJFBbOkzaZU=";
|
2005-10-24 15:15:34 +00:00
|
|
|
};
|
2016-06-23 09:01:21 +00:00
|
|
|
|
2022-05-06 18:39:28 +00:00
|
|
|
strictDeps = true;
|
2023-03-31 01:35:05 +00:00
|
|
|
|
|
|
|
depsBuildBuild = [
|
|
|
|
buildPackages.stdenv.cc
|
|
|
|
];
|
|
|
|
|
2021-11-18 20:42:34 +00:00
|
|
|
buildInputs = [
|
2022-09-29 15:29:47 +00:00
|
|
|
libxcrypt
|
2021-11-18 20:42:34 +00:00
|
|
|
ncurses
|
|
|
|
];
|
2009-06-13 16:09:26 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2021-08-01 03:11:43 +00:00
|
|
|
homepage = "https://www.tcsh.org/";
|
2016-04-10 23:39:00 +00:00
|
|
|
description = "An enhanced version of the Berkeley UNIX C shell (csh)";
|
|
|
|
longDescription = ''
|
2021-08-01 03:11:43 +00: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-10 23:39:00 +00:00
|
|
|
It includes:
|
|
|
|
- command-line editor
|
|
|
|
- programmable word completion
|
|
|
|
- spelling correction
|
|
|
|
- history mechanism
|
|
|
|
- job control
|
2009-06-13 16:09:26 +00:00
|
|
|
'';
|
2016-04-10 23:39:00 +00:00
|
|
|
license = licenses.bsd2;
|
|
|
|
maintainers = with maintainers; [ AndersonTorres ];
|
2021-08-01 03:11:43 +00:00
|
|
|
platforms = platforms.unix;
|
2009-06-13 16:09:26 +00:00
|
|
|
};
|
2016-05-14 13:03:25 +00:00
|
|
|
|
2021-11-18 20:42:34 +00:00
|
|
|
passthru.shellPath = "/bin/tcsh";
|
2005-10-24 15:15:34 +00:00
|
|
|
}
|