summary refs log tree commit diff
path: root/pkgs/shells
diff options
context:
space:
mode:
authorMaximilian Bosch <maximilian@mbosch.me>2020-05-20 12:56:15 +0200
committerGitHub <noreply@github.com>2020-05-20 12:56:15 +0200
commit62c5ef07c83d2157131a63480c1309930b56b9e2 (patch)
tree3be6d91a08029f3dcd71af74db8b19324a724424 /pkgs/shells
parentec46eaadbf24b57aba6f8b709ddb4da4e2021e01 (diff)
parentcca31e245dba375cbf039eb2575995972ddca72d (diff)
downloadnixpkgs-62c5ef07c83d2157131a63480c1309930b56b9e2.tar
nixpkgs-62c5ef07c83d2157131a63480c1309930b56b9e2.tar.gz
nixpkgs-62c5ef07c83d2157131a63480c1309930b56b9e2.tar.bz2
nixpkgs-62c5ef07c83d2157131a63480c1309930b56b9e2.tar.lz
nixpkgs-62c5ef07c83d2157131a63480c1309930b56b9e2.tar.xz
nixpkgs-62c5ef07c83d2157131a63480c1309930b56b9e2.tar.zst
nixpkgs-62c5ef07c83d2157131a63480c1309930b56b9e2.zip
Merge pull request #88212 from r-ryantm/auto-update/powershell
powershell: 7.0.0 -> 7.0.1
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 a5c22d125af..58c18fb695b 100644
--- a/pkgs/shells/powershell/default.nix
+++ b/pkgs/shells/powershell/default.nix
@@ -5,7 +5,7 @@ let platformString = if stdenv.isDarwin then "osx"
                      else if stdenv.isLinux then "linux"
                      else throw "unsupported platform";
     platformSha = if stdenv.isDarwin then "0c71w6z6sc86si07i6vy4w3069jal7476wyiizyr7qjm9m22963f"
-                     else if stdenv.isLinux then "0m13y66a6w64s31qbi3j5x8jll6dfrin890jah8kyncsvlyisqg3"
+                     else if stdenv.isLinux then "14d6nhv525pa8pi4p1r2mn180isfzgshqrbmql3qd55aksjpq1v0"
                      else throw "unsupported platform";
     platformLdLibraryPath = if stdenv.isDarwin then "DYLD_FALLBACK_LIBRARY_PATH"
                      else if stdenv.isLinux then "LD_LIBRARY_PATH"
@@ -15,7 +15,7 @@ let platformString = if stdenv.isDarwin then "osx"
 in
 stdenv.mkDerivation rec {
   pname = "powershell";
-  version = "7.0.0";
+  version = "7.0.1";
 
   src = fetchzip {
     url = "https://github.com/PowerShell/PowerShell/releases/download/v${version}/powershell-${version}-${platformString}-x64.tar.gz";