2021-11-18 21:42:34 +01:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchurl
|
2022-09-29 17:29:47 +02:00
|
|
|
, libxcrypt
|
2021-01-05 03:30:56 +01:00
|
|
|
, ncurses
|
2023-03-31 03:35:05 +02:00
|
|
|
, buildPackages
|
2021-01-05 03:30:56 +01:00
|
|
|
}:
|
2005-10-24 17:15:34 +02:00
|
|
|
|
2023-04-22 13:15:27 +02:00
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "tcsh";
|
2023-04-22 13:15:27 +02:00
|
|
|
version = "6.24.10";
|
2017-01-26 03:38:20 +01:00
|
|
|
|
2005-10-24 17:15:34 +02:00
|
|
|
src = fetchurl {
|
2023-04-22 13:15:27 +02:00
|
|
|
url = "mirror://tcsh/tcsh-${finalAttrs.version}.tar.gz";
|
|
|
|
hash = "sha256-E0dcD763QTnTPteTvwD/u7KsLcn7HURGekEHYKujZmQ=";
|
2005-10-24 17:15:34 +02:00
|
|
|
};
|
2016-06-23 11:01:21 +02:00
|
|
|
|
2022-05-06 20:39:28 +02:00
|
|
|
strictDeps = true;
|
2023-03-31 03:35:05 +02:00
|
|
|
|
|
|
|
depsBuildBuild = [
|
|
|
|
buildPackages.stdenv.cc
|
|
|
|
];
|
|
|
|
|
2021-11-18 21:42:34 +01:00
|
|
|
buildInputs = [
|
2022-09-29 17:29:47 +02:00
|
|
|
libxcrypt
|
2021-11-18 21:42:34 +01:00
|
|
|
ncurses
|
|
|
|
];
|
2009-06-13 18:09:26 +02:00
|
|
|
|
2023-04-22 13:15:27 +02:00
|
|
|
passthru.shellPath = "/bin/tcsh";
|
|
|
|
|
|
|
|
meta = {
|
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
|
2009-06-13 18:09:26 +02:00
|
|
|
'';
|
2023-04-22 13:15:27 +02:00
|
|
|
license = lib.licenses.bsd2;
|
|
|
|
maintainers = with lib.maintainers; [ AndersonTorres ];
|
|
|
|
platforms = lib.platforms.unix;
|
2009-06-13 18:09:26 +02:00
|
|
|
};
|
2023-04-22 13:15:27 +02:00
|
|
|
})
|