mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
52 lines
1.1 KiB
Nix
52 lines
1.1 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchurl
|
|
, libxcrypt
|
|
, ncurses
|
|
, buildPackages
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "tcsh";
|
|
version = "6.24.11";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://tcsh/tcsh-${finalAttrs.version}.tar.gz";
|
|
hash = "sha256-tae2J6uz7y6NOoabtnXQ6SfYUHBER6Gyx3lGwNMkeZ0=";
|
|
};
|
|
|
|
strictDeps = true;
|
|
|
|
depsBuildBuild = [
|
|
buildPackages.stdenv.cc
|
|
];
|
|
|
|
buildInputs = [
|
|
libxcrypt
|
|
ncurses
|
|
];
|
|
|
|
passthru.shellPath = "/bin/tcsh";
|
|
|
|
meta = {
|
|
homepage = "https://www.tcsh.org/";
|
|
description = "An enhanced version of the Berkeley UNIX C shell (csh)";
|
|
mainProgram = "tcsh";
|
|
longDescription = ''
|
|
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.
|
|
|
|
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;
|
|
};
|
|
})
|