summary refs log tree commit diff
diff options
context:
space:
mode:
authorAnselm Schüler <mail@anselmschueler.com>2022-05-26 12:49:57 +0200
committerAnselm Schüler <mail@anselmschueler.com>2022-05-26 12:49:57 +0200
commit0abae979a96c4fe0c038e83183e9003c4e3674d7 (patch)
treeed2ee0d2da165599b7be4f7e283abdbd7f73a18f
parentcf22e7bdd0c957781a289f346e9e90d65d0a54f7 (diff)
downloadnixpkgs-0abae979a96c4fe0c038e83183e9003c4e3674d7.tar
nixpkgs-0abae979a96c4fe0c038e83183e9003c4e3674d7.tar.gz
nixpkgs-0abae979a96c4fe0c038e83183e9003c4e3674d7.tar.bz2
nixpkgs-0abae979a96c4fe0c038e83183e9003c4e3674d7.tar.lz
nixpkgs-0abae979a96c4fe0c038e83183e9003c4e3674d7.tar.xz
nixpkgs-0abae979a96c4fe0c038e83183e9003c4e3674d7.tar.zst
nixpkgs-0abae979a96c4fe0c038e83183e9003c4e3674d7.zip
powershell: 7.2.3 -> 7.2.4
-rw-r--r--pkgs/shells/powershell/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/shells/powershell/default.nix b/pkgs/shells/powershell/default.nix
index 445dca9f4a4..e03a2e24e7e 100644
--- a/pkgs/shells/powershell/default.nix
+++ b/pkgs/shells/powershell/default.nix
@@ -7,10 +7,10 @@ let archString = if stdenv.isAarch64 then "arm64"
     platformString = if stdenv.isDarwin then "osx"
                      else if stdenv.isLinux then "linux"
                      else throw "unsupported platform";
-    platformSha = if (stdenv.isDarwin && stdenv.isx86_64) then "sha256-VF8C9JXVureJnMTyQD4SDeq/whyQOpk1dFtu6cJQRO8="
-                     else if (stdenv.isDarwin && stdenv.isAarch64) then "sha256-WqQQFdFTgIGi0fEtHjHf2rtP2l5YqdMQZH09O+34JTo="
-                     else if (stdenv.isLinux && stdenv.isx86_64) then "sha256-oKlX6NfTOxrxMkH+vWGMMTyVJqD2F2CB5qx+8EvNBE8="
-                     else if (stdenv.isLinux && stdenv.isAarch64) then "sha256-sWOmylDyy6n8SbnVDY5+wSJ2PPEd+vuoxbMU2iECyxY="
+    platformSha = if (stdenv.isDarwin && stdenv.isx86_64) then "sha256-bcLyf/sIaFoS1xS4RLPPC9lVFa94IfQlWeXhyXUTsd0="
+                     else if (stdenv.isDarwin && stdenv.isAarch64) then "sha256-2UACjUtyQ611iXmwyiWrGwRVA0FT1cLLMKnY0y4SgoQ="
+                     else if (stdenv.isLinux && stdenv.isx86_64) then "sha256-5AZGwxpEqn3X20rCxPcvuqcQib689ui+e0jvri92EdA="
+                     else if (stdenv.isLinux && stdenv.isAarch64) then "sha256-90Sz32hm+EcK3nFJOGGCSqIEtW7w48G8mizXvcLb8WU="
                      else throw "unsupported platform";
     platformLdLibraryPath = if stdenv.isDarwin then "DYLD_FALLBACK_LIBRARY_PATH"
                      else if stdenv.isLinux then "LD_LIBRARY_PATH"
@@ -20,7 +20,7 @@ let archString = if stdenv.isAarch64 then "arm64"
 in
 stdenv.mkDerivation rec {
   pname = "powershell";
-  version = "7.2.3";
+  version = "7.2.4";
 
   src = fetchzip {
     url = "https://github.com/PowerShell/PowerShell/releases/download/v${version}/powershell-${version}-${platformString}-${archString}.tar.gz";