summary refs log tree commit diff
path: root/pkgs/shells/powershell
diff options
context:
space:
mode:
authorR. Ryantm <ryantm-bot@ryantm.com>2021-12-25 11:30:29 +0000
committerR. Ryantm <ryantm-bot@ryantm.com>2021-12-25 11:30:29 +0000
commit0bec88c4f76d238fdb0f9ff360298436ba28c0bc (patch)
treec066c2ad358c874e8b36a078cdc87b9fe0bae99b /pkgs/shells/powershell
parente2b2136d6302cd2936b49eeda58b55816758a3aa (diff)
downloadnixpkgs-0bec88c4f76d238fdb0f9ff360298436ba28c0bc.tar
nixpkgs-0bec88c4f76d238fdb0f9ff360298436ba28c0bc.tar.gz
nixpkgs-0bec88c4f76d238fdb0f9ff360298436ba28c0bc.tar.bz2
nixpkgs-0bec88c4f76d238fdb0f9ff360298436ba28c0bc.tar.lz
nixpkgs-0bec88c4f76d238fdb0f9ff360298436ba28c0bc.tar.xz
nixpkgs-0bec88c4f76d238fdb0f9ff360298436ba28c0bc.tar.zst
nixpkgs-0bec88c4f76d238fdb0f9ff360298436ba28c0bc.zip
powershell: 7.2.0 -> 7.2.1
Diffstat (limited to 'pkgs/shells/powershell')
-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 c34dd472f94..4efa2cd88a7 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-gRebkDY0WOKabuLd/WNMoRPL7oGQJtHELFNe+sQ0TwA="
+                     else if (stdenv.isLinux && stdenv.isx86_64) then "sha256-kidPtDMkEZ/1r4WIApPZ/BsdJkolpSZ3f72JyDv3798="
                      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.0";
+  version = "7.2.1";
 
   src = fetchzip {
     url = "https://github.com/PowerShell/PowerShell/releases/download/v${version}/powershell-${version}-${platformString}-${archString}.tar.gz";