summary refs log tree commit diff
path: root/pkgs/shells/powershell
diff options
context:
space:
mode:
authorVladimír Čunát <v@cunat.cz>2022-04-14 09:50:48 +0200
committerVladimír Čunát <v@cunat.cz>2022-04-14 09:53:21 +0200
commitd5d94127fd6468febe4f5e8eba8cb231bbd56103 (patch)
tree53efc69e691bdf7c7415039f5cdddb90d8fb5fc4 /pkgs/shells/powershell
parent43c910047f4f2882cf9cba1d38045c3f6ebee051 (diff)
parent069038f0931658e6030876f37f81dfb6825f884c (diff)
downloadnixpkgs-d5d94127fd6468febe4f5e8eba8cb231bbd56103.tar
nixpkgs-d5d94127fd6468febe4f5e8eba8cb231bbd56103.tar.gz
nixpkgs-d5d94127fd6468febe4f5e8eba8cb231bbd56103.tar.bz2
nixpkgs-d5d94127fd6468febe4f5e8eba8cb231bbd56103.tar.lz
nixpkgs-d5d94127fd6468febe4f5e8eba8cb231bbd56103.tar.xz
nixpkgs-d5d94127fd6468febe4f5e8eba8cb231bbd56103.tar.zst
nixpkgs-d5d94127fd6468febe4f5e8eba8cb231bbd56103.zip
Merge branch 'staging-next' into staging
Minor conflicts; I hope I didn't mess up:
	pkgs/development/tools/misc/binutils/default.nix
	pkgs/games/openjk/default.nix
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 1233b23f3ca..088c63512b3 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";