summary refs log tree commit diff
path: root/pkgs/shells/tcsh/default.nix
diff options
context:
space:
mode:
authorAndersonTorres <torres.anderson.85@protonmail.com>2020-04-07 10:25:32 -0300
committerAndersonTorres <torres.anderson.85@protonmail.com>2020-04-07 10:25:45 -0300
commit43177bec10d733271816d2b9641101721c2926d4 (patch)
tree4d5710360c9daa183cf0586353d6dc84513b9a08 /pkgs/shells/tcsh/default.nix
parentd7b98129fea1ed08a645096b16c424e3cabf77e5 (diff)
downloadnixpkgs-43177bec10d733271816d2b9641101721c2926d4.tar
nixpkgs-43177bec10d733271816d2b9641101721c2926d4.tar.gz
nixpkgs-43177bec10d733271816d2b9641101721c2926d4.tar.bz2
nixpkgs-43177bec10d733271816d2b9641101721c2926d4.tar.lz
nixpkgs-43177bec10d733271816d2b9641101721c2926d4.tar.xz
nixpkgs-43177bec10d733271816d2b9641101721c2926d4.tar.zst
nixpkgs-43177bec10d733271816d2b9641101721c2926d4.zip
tcsh: 6.21.00 -> 6.22.02
Diffstat (limited to 'pkgs/shells/tcsh/default.nix')
-rw-r--r--pkgs/shells/tcsh/default.nix9
1 files changed, 5 insertions, 4 deletions
diff --git a/pkgs/shells/tcsh/default.nix b/pkgs/shells/tcsh/default.nix
index 110beb82804..e22811828fc 100644
--- a/pkgs/shells/tcsh/default.nix
+++ b/pkgs/shells/tcsh/default.nix
@@ -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;