nixpkgs/pkgs/by-name/tc/tcsh/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

51 lines
1.1 KiB
Nix
Raw Normal View History

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
}:
stdenv.mkDerivation (finalAttrs: {
pname = "tcsh";
version = "6.24.10";
2017-01-26 02:38:20 +00:00
src = fetchurl {
url = "mirror://tcsh/tcsh-${finalAttrs.version}.tar.gz";
hash = "sha256-E0dcD763QTnTPteTvwD/u7KsLcn7HURGekEHYKujZmQ=";
};
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
];
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 = "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
'';
license = lib.licenses.bsd2;
maintainers = with lib.maintainers; [ AndersonTorres ];
platforms = lib.platforms.unix;
};
})