summary refs log tree commit diff
path: root/pkgs/shells
diff options
context:
space:
mode:
authorajs124 <ajs124@users.noreply.github.com>2022-04-11 20:11:52 +0100
committerGitHub <noreply@github.com>2022-04-11 20:11:52 +0100
commit70564801c0729045d83e421d83770db2a98ec74d (patch)
tree62584d98f6b6dbb1667ceb7baa0798fab82525ee /pkgs/shells
parentffe759bb5bc99c4b56db60f411961045b6db70a7 (diff)
parent9df2c375542e729d8d3692c34227a0e1623ea706 (diff)
downloadnixpkgs-70564801c0729045d83e421d83770db2a98ec74d.tar
nixpkgs-70564801c0729045d83e421d83770db2a98ec74d.tar.gz
nixpkgs-70564801c0729045d83e421d83770db2a98ec74d.tar.bz2
nixpkgs-70564801c0729045d83e421d83770db2a98ec74d.tar.lz
nixpkgs-70564801c0729045d83e421d83770db2a98ec74d.tar.xz
nixpkgs-70564801c0729045d83e421d83770db2a98ec74d.tar.zst
nixpkgs-70564801c0729045d83e421d83770db2a98ec74d.zip
Merge pull request #164638 from r-ryantm/auto-update/powershell
powershell: 7.2.1 -> 7.2.2
Diffstat (limited to 'pkgs/shells')
-rw-r--r--pkgs/shells/powershell/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/shells/powershell/default.nix b/pkgs/shells/powershell/default.nix
index 4efa2cd88a7..6dbb9fa7625 100644
--- a/pkgs/shells/powershell/default.nix
+++ b/pkgs/shells/powershell/default.nix
@@ -9,7 +9,7 @@ let archString = if stdenv.isAarch64 then "arm64"
                      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-kidPtDMkEZ/1r4WIApPZ/BsdJkolpSZ3f72JyDv3798="
+                     else if (stdenv.isLinux && stdenv.isx86_64) then "sha256-QSL0lmxa7rGoNOx7JB310wF3VoUy96e9ZFop5rAvdBM="
                      else if (stdenv.isLinux && stdenv.isAarch64) then "sha256-bUacA4DwjDNlIG7yooXxUGL9AysAogNWuQDvcTqo1sE="
                      else throw "unsupported platform";
     platformLdLibraryPath = if stdenv.isDarwin then "DYLD_FALLBACK_LIBRARY_PATH"
@@ -20,7 +20,7 @@ let archString = if stdenv.isAarch64 then "arm64"
 in
 stdenv.mkDerivation rec {
   pname = "powershell";
-  version = "7.2.1";
+  version = "7.2.2";
 
   src = fetchzip {
     url = "https://github.com/PowerShell/PowerShell/releases/download/v${version}/powershell-${version}-${platformString}-${archString}.tar.gz";