Merge pull request #84605 from AndersonTorres/update-tcsh

tcsh: 6.21.00 -> 6.22.02
This commit is contained in:
Anderson Torres 2020-04-08 15:40:33 -03:00 committed by GitHub
commit 0a02a05903
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,9 +1,10 @@
{ stdenv, fetchurl, fetchpatch
, ncurses }:
with stdenv.lib;
stdenv.mkDerivation rec {
pname = "tcsh";
version = "6.21.00";
version = "6.22.02";
src = fetchurl {
urls = [
@ -11,7 +12,7 @@ stdenv.mkDerivation rec {
"ftp://ftp.astron.com/pub/tcsh/${pname}-${version}.tar.gz"
"ftp://ftp.funet.fi/pub/unix/shells/tcsh/${pname}-${version}.tar.gz"
];
sha256 = "0wp9cqkzdj5ahfyg9bn5z1wnyblqyv9vz4sc5aqmj7rp91a34f64";
sha256 = "0nw8prz1n0lmr82wnpyhrzmki630afn7p9cfgr3vl00vr9c72a7d";
};
buildInputs = [ ncurses ];
@ -23,7 +24,7 @@ stdenv.mkDerivation rec {
sha256 = "1qc6ydxhdfizsbkaxhpn3wib8sfphrw10xnnsxx2prvzg9g2zp67";
});
meta = with stdenv.lib;{
meta = {
description = "An enhanced version of the Berkeley UNIX C shell (csh)";
longDescription = ''
tcsh is an enhanced but completely compatible version of the
@ -37,7 +38,7 @@ stdenv.mkDerivation rec {
- history mechanism
- job control
'';
homepage = https://www.tcsh.org/;
homepage = "https://www.tcsh.org/";
license = licenses.bsd2;
maintainers = with maintainers; [ AndersonTorres ];
platforms = platforms.linux ++ platforms.darwin;