Merge pull request #14583 from AndersonTorres/tcsh

tcsh: 6.18.01 -> 6.19.00

authored by Michael Raskin and committed by GitHub b300a893 4848342c

+24 -11
+24 -11
pkgs/shells/tcsh/default.nix
··· 1 - {stdenv, fetchurl, ncurses}: 2 3 stdenv.mkDerivation rec { 4 - name = "tcsh-6.18.01"; 5 6 src = fetchurl { 7 - url = "ftp://ftp.funet.fi/pub/unix/shells/tcsh/${name}.tar.gz"; 8 - sha256 = "1a4z9kwgx1iqqzvv64si34m60gj34p7lp6rrcrb59s7ka5wa476q"; 9 }; 10 11 - buildInputs = [ncurses]; 12 13 - postInstall = 14 - '' 15 - ln -s tcsh $out/bin/csh 16 ''; 17 - 18 - meta = { 19 homepage = http://www.tcsh.org/; 20 - description = "An enhanced version of the Berkeley UNIX C shell (csh)"; 21 }; 22 23 passthru = {
··· 1 + { stdenv, fetchurl 2 + , ncurses }: 3 4 stdenv.mkDerivation rec { 5 + name = "tcsh-${version}"; 6 + version = "6.19.00"; 7 8 src = fetchurl { 9 + urls = [ "ftp://ftp.funet.fi/pub/unix/shells/tcsh/${name}.tar.gz" 10 + "http://ftp.funet.fi/pub/mirrors/ftp.astron.com/pub/tcsh/${name}.tar.gz" ]; 11 + sha256 = "0jaw51382pqyb6d1kgfg8ir0wd3p5qr2bmg8svcmjhlyp3h73qhj"; 12 }; 13 14 + buildInputs = [ ncurses ]; 15 16 + meta = with stdenv.lib;{ 17 + description = "An enhanced version of the Berkeley UNIX C shell (csh)"; 18 + longDescription = '' 19 + tcsh is an enhanced but completely compatible version of the 20 + Berkeley UNIX C shell, csh. It is a command language interpreter 21 + usable both as an interactive login shell and a shell script 22 + command processor. 23 + It includes: 24 + - command-line editor 25 + - programmable word completion 26 + - spelling correction 27 + - history mechanism 28 + - job control 29 ''; 30 homepage = http://www.tcsh.org/; 31 + license = licenses.bsd2; 32 + maintainers = with maintainers; [ AndersonTorres ]; 33 + platforms = platforms.linux; 34 }; 35 36 passthru = {