summary refs log tree commit diff
path: root/pkgs/shells
diff options
context:
space:
mode:
authorArtturin <Artturin@artturin.com>2022-05-26 04:18:43 +0300
committerArtturin <Artturin@artturin.com>2022-05-26 04:18:43 +0300
commit19dd92369e27197002e8c0b03ff3538dfd843276 (patch)
treedcc24057bafac35852a092bd19d4db41ccc706e0 /pkgs/shells
parentc8f971681eb73d6d85d5989a6df39976c2e3f6ef (diff)
downloadnixpkgs-19dd92369e27197002e8c0b03ff3538dfd843276.tar
nixpkgs-19dd92369e27197002e8c0b03ff3538dfd843276.tar.gz
nixpkgs-19dd92369e27197002e8c0b03ff3538dfd843276.tar.bz2
nixpkgs-19dd92369e27197002e8c0b03ff3538dfd843276.tar.lz
nixpkgs-19dd92369e27197002e8c0b03ff3538dfd843276.tar.xz
nixpkgs-19dd92369e27197002e8c0b03ff3538dfd843276.tar.zst
nixpkgs-19dd92369e27197002e8c0b03ff3538dfd843276.zip
zsh: 5.8.1 -> 5.9 && add artturin to maintainers
Diffstat (limited to 'pkgs/shells')
-rw-r--r--pkgs/shells/zsh/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/shells/zsh/default.nix b/pkgs/shells/zsh/default.nix
index f09a0672f19..7a584e29f5d 100644
--- a/pkgs/shells/zsh/default.nix
+++ b/pkgs/shells/zsh/default.nix
@@ -13,7 +13,7 @@
 , buildPackages }:
 
 let
-  version = "5.8.1";
+  version = "5.9";
 in
 
 stdenv.mkDerivation {
@@ -22,7 +22,7 @@ stdenv.mkDerivation {
 
   src = fetchurl {
     url = "mirror://sourceforge/zsh/zsh-${version}.tar.xz";
-    sha256 = "sha256-tpc1ILrOYAtHeSACabHl155fUFrElSBYwRrVu/DdmRk=";
+    sha256 = "sha256-m40ezt1bXoH78ZGOh2dSp92UjgXBoNuhCrhjhC1FrNU=";
   };
 
   patches = [
@@ -97,7 +97,7 @@ EOF
     '';
     license = "MIT-like";
     homepage = "https://www.zsh.org/";
-    maintainers = with lib.maintainers; [ pSub ];
+    maintainers = with lib.maintainers; [ pSub artturin ];
     platforms = lib.platforms.unix;
   };