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
|
|
|
|
2023-04-22 11:15:27 +00:00
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "tcsh";
|
2024-06-13 10:41:09 +00:00
|
|
|
version = "6.24.13";
|
2017-01-26 02:38:20 +00:00
|
|
|
|
2005-10-24 15:15:34 +00:00
|
|
|
src = fetchurl {
|
2023-04-22 11:15:27 +00:00
|
|
|
url = "mirror://tcsh/tcsh-${finalAttrs.version}.tar.gz";
|
2024-06-13 10:41:09 +00:00
|
|
|
hash = "sha256-HpJ9UunIXRYr+YXyTRPGzO3pvriA2G/sSS7RVIClxxo=";
|
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
|
|
|
|
2023-04-22 11:15:27 +00:00
|
|
|
passthru.shellPath = "/bin/tcsh";
|
|
|
|
|
|
|
|
meta = {
|
2021-08-01 03:11:43 +00:00
|
|
|
homepage = "https://www.tcsh.org/";
|
2016-04-10 23:39:00 +00:00
|
|
|
description = "Enhanced version of the Berkeley UNIX C shell (csh)";
|
2024-03-19 02:14:51 +00:00
|
|
|
mainProgram = "tcsh";
|
2016-04-10 23:39:00 +00:00
|
|
|
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
|
|
|
'';
|
2023-04-22 11:15:27 +00:00
|
|
|
license = lib.licenses.bsd2;
|
2024-04-15 23:39:47 +00:00
|
|
|
maintainers = with lib.maintainers; [ suominen ];
|
2023-04-22 11:15:27 +00:00
|
|
|
platforms = lib.platforms.unix;
|
2009-06-13 16:09:26 +00:00
|
|
|
};
|
2023-04-22 11:15:27 +00:00
|
|
|
})
|