tcsh: 6.22.03 -> 6.22.04

This commit is contained in:
AndersonTorres 2021-08-01 00:11:43 -03:00
parent dbe3fa5cba
commit bbf384f4cd
1 changed files with 8 additions and 8 deletions

View File

@ -4,7 +4,7 @@
stdenv.mkDerivation rec {
pname = "tcsh";
version = "6.22.03";
version = "6.22.04";
src = fetchurl {
urls = [
@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
"ftp://ftp.funet.fi/pub/unix/shells/tcsh/${pname}-${version}.tar.gz"
"ftp://ftp.funet.fi/pub/unix/shells/tcsh/old/${pname}-${version}.tar.gz"
];
sha256 = "sha256-viz9ZT0qDH9QbS3RTBIyS6dJvUhAN75t9Eo5c/UiYrc=";
hash = "sha256-6xY1YkMhjDLzngcljXK/iyHmLOlLsOipXjGLFROX4jE=";
};
buildInputs = [ ncurses ];
@ -28,12 +28,13 @@ stdenv.mkDerivation rec {
});
meta = with lib; {
homepage = "https://www.tcsh.org/";
description = "An enhanced version of the Berkeley UNIX C shell (csh)";
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.
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
@ -41,10 +42,9 @@ stdenv.mkDerivation rec {
- history mechanism
- job control
'';
homepage = "https://www.tcsh.org/";
license = licenses.bsd2;
maintainers = with maintainers; [ AndersonTorres ];
platforms = platforms.linux ++ platforms.darwin;
platforms = platforms.unix;
};
passthru = {