tcsh: 6.24.07 -> 6.24.10

Co-authored-by: Gabriel Arazas <foodogsquared@foodogsquared.one>
This commit is contained in:
Anderson Torres 2023-04-22 08:15:27 -03:00
parent 85e153dfa5
commit 088941cc9d

@ -6,13 +6,13 @@
, buildPackages , buildPackages
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation (finalAttrs: {
pname = "tcsh"; pname = "tcsh";
version = "6.24.07"; version = "6.24.10";
src = fetchurl { src = fetchurl {
url = "mirror://tcsh/${pname}-${version}.tar.gz"; url = "mirror://tcsh/tcsh-${finalAttrs.version}.tar.gz";
hash = "sha256-dOTpgFy9lBPtNLT/odcvyNDvgaW3lHaFQJFBbOkzaZU="; hash = "sha256-E0dcD763QTnTPteTvwD/u7KsLcn7HURGekEHYKujZmQ=";
}; };
strictDeps = true; strictDeps = true;
@ -26,7 +26,9 @@ stdenv.mkDerivation rec {
ncurses ncurses
]; ];
meta = with lib; { passthru.shellPath = "/bin/tcsh";
meta = {
homepage = "https://www.tcsh.org/"; homepage = "https://www.tcsh.org/";
description = "An enhanced version of the Berkeley UNIX C shell (csh)"; description = "An enhanced version of the Berkeley UNIX C shell (csh)";
longDescription = '' longDescription = ''
@ -41,10 +43,8 @@ stdenv.mkDerivation rec {
- history mechanism - history mechanism
- job control - job control
''; '';
license = licenses.bsd2; license = lib.licenses.bsd2;
maintainers = with maintainers; [ AndersonTorres ]; maintainers = with lib.maintainers; [ AndersonTorres ];
platforms = platforms.unix; platforms = lib.platforms.unix;
}; };
})
passthru.shellPath = "/bin/tcsh";
}