summary refs log tree commit diff
path: root/pkgs/shells/tcsh/default.nix
diff options
context:
space:
mode:
authorAnderson Torres <torres.anderson.85@protonmail.com>2023-04-22 08:15:27 -0300
committerAnderson Torres <torres.anderson.85@protonmail.com>2023-04-22 11:48:25 -0300
commit088941cc9d28f96e86f9afb164a17b1346634f32 (patch)
treea95ebfde3990f9c8abea056843c59376b599f591 /pkgs/shells/tcsh/default.nix
parent85e153dfa5e8cdd56c4d02b2b66e57dac014bf20 (diff)
downloadnixpkgs-088941cc9d28f96e86f9afb164a17b1346634f32.tar
nixpkgs-088941cc9d28f96e86f9afb164a17b1346634f32.tar.gz
nixpkgs-088941cc9d28f96e86f9afb164a17b1346634f32.tar.bz2
nixpkgs-088941cc9d28f96e86f9afb164a17b1346634f32.tar.lz
nixpkgs-088941cc9d28f96e86f9afb164a17b1346634f32.tar.xz
nixpkgs-088941cc9d28f96e86f9afb164a17b1346634f32.tar.zst
nixpkgs-088941cc9d28f96e86f9afb164a17b1346634f32.zip
tcsh: 6.24.07 -> 6.24.10
Co-authored-by: Gabriel Arazas <foodogsquared@foodogsquared.one>
Diffstat (limited to 'pkgs/shells/tcsh/default.nix')
-rw-r--r--pkgs/shells/tcsh/default.nix22
1 files changed, 11 insertions, 11 deletions
diff --git a/pkgs/shells/tcsh/default.nix b/pkgs/shells/tcsh/default.nix
index 72c97a46e3c..4fa358fbb7c 100644
--- a/pkgs/shells/tcsh/default.nix
+++ b/pkgs/shells/tcsh/default.nix
@@ -6,13 +6,13 @@
 , buildPackages
 }:
 
-stdenv.mkDerivation rec {
+stdenv.mkDerivation (finalAttrs: {
   pname = "tcsh";
-  version = "6.24.07";
+  version = "6.24.10";
 
   src = fetchurl {
-    url = "mirror://tcsh/${pname}-${version}.tar.gz";
-    hash = "sha256-dOTpgFy9lBPtNLT/odcvyNDvgaW3lHaFQJFBbOkzaZU=";
+    url = "mirror://tcsh/tcsh-${finalAttrs.version}.tar.gz";
+    hash = "sha256-E0dcD763QTnTPteTvwD/u7KsLcn7HURGekEHYKujZmQ=";
   };
 
   strictDeps = true;
@@ -26,7 +26,9 @@ stdenv.mkDerivation rec {
     ncurses
   ];
 
-  meta = with lib; {
+  passthru.shellPath = "/bin/tcsh";
+
+  meta = {
     homepage = "https://www.tcsh.org/";
     description = "An enhanced version of the Berkeley UNIX C shell (csh)";
     longDescription = ''
@@ -41,10 +43,8 @@ stdenv.mkDerivation rec {
       - history mechanism
       - job control
     '';
-    license = licenses.bsd2;
-    maintainers = with maintainers; [ AndersonTorres ];
-    platforms = platforms.unix;
+    license = lib.licenses.bsd2;
+    maintainers = with lib.maintainers; [ AndersonTorres ];
+    platforms = lib.platforms.unix;
   };
-
-  passthru.shellPath = "/bin/tcsh";
-}
+})