summary refs log tree commit diff
path: root/pkgs/shells/powershell/default.nix
diff options
context:
space:
mode:
authorAnselm Schüler <mail@anselmschueler.com>2022-05-06 23:45:45 +0200
committerAnselm Schüler <mail@anselmschueler.com>2022-05-07 13:05:05 +0200
commitea9be9e24ffdfc2f1cc3973fa784c899b872c0e8 (patch)
tree56dcc376fa1efbb4705c257de5688a68a27bec2a /pkgs/shells/powershell/default.nix
parent46e402fc6e4c403f29d793bdda5d5ed4313bcf69 (diff)
downloadnixpkgs-ea9be9e24ffdfc2f1cc3973fa784c899b872c0e8.tar
nixpkgs-ea9be9e24ffdfc2f1cc3973fa784c899b872c0e8.tar.gz
nixpkgs-ea9be9e24ffdfc2f1cc3973fa784c899b872c0e8.tar.bz2
nixpkgs-ea9be9e24ffdfc2f1cc3973fa784c899b872c0e8.tar.lz
nixpkgs-ea9be9e24ffdfc2f1cc3973fa784c899b872c0e8.tar.xz
nixpkgs-ea9be9e24ffdfc2f1cc3973fa784c899b872c0e8.tar.zst
nixpkgs-ea9be9e24ffdfc2f1cc3973fa784c899b872c0e8.zip
powershell: 7.2.2 -> 7.2.3
Diffstat (limited to 'pkgs/shells/powershell/default.nix')
-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 19ca69ecb94..9f3dcbe1812 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-h5zjn8wtgHmsJFiGq1rja6kZTZj3Q72W2kH3AexRDQs="
-                     else if (stdenv.isDarwin && stdenv.isAarch64) then "sha256-NHM9ZUpBJb59Oq0Ke7DcvaN+bZ9MjSpXBRu5Ng9OVZ0="
-                     else if (stdenv.isLinux && stdenv.isx86_64) then "sha256-QSL0lmxa7rGoNOx7JB310wF3VoUy96e9ZFop5rAvdBM="
-                     else if (stdenv.isLinux && stdenv.isAarch64) then "sha256-bUacA4DwjDNlIG7yooXxUGL9AysAogNWuQDvcTqo1sE="
+    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="
                      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.2";
+  version = "7.2.3";
 
   src = fetchzip {
     url = "https://github.com/PowerShell/PowerShell/releases/download/v${version}/powershell-${version}-${platformString}-${archString}.tar.gz";