summary refs log tree commit diff
path: root/pkgs/shells
diff options
context:
space:
mode:
authorFrederik Rietdijk <freddyrietdijk@fridh.nl>2018-07-22 08:44:38 +0200
committerGitHub <noreply@github.com>2018-07-22 08:44:38 +0200
commitd4fb8ab2963178de7d1dcec48cdf78442f1605be (patch)
tree093fafa3db64034443471b1f714d70585cb1b684 /pkgs/shells
parent5dcb1febacae392d17242737229f6d701178162b (diff)
parentec67dfb40aac25ac813fec0867f879394c849f9a (diff)
downloadnixpkgs-d4fb8ab2963178de7d1dcec48cdf78442f1605be.tar
nixpkgs-d4fb8ab2963178de7d1dcec48cdf78442f1605be.tar.gz
nixpkgs-d4fb8ab2963178de7d1dcec48cdf78442f1605be.tar.bz2
nixpkgs-d4fb8ab2963178de7d1dcec48cdf78442f1605be.tar.lz
nixpkgs-d4fb8ab2963178de7d1dcec48cdf78442f1605be.tar.xz
nixpkgs-d4fb8ab2963178de7d1dcec48cdf78442f1605be.tar.zst
nixpkgs-d4fb8ab2963178de7d1dcec48cdf78442f1605be.zip
Merge pull request #43912 from r-ryantm/auto-update/powershell
powershell: 6.0.2 -> 6.0.3
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 93488d9e87f..e0654e131dc 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 "1ga4p8xmrxa54v2s6i0q1q7lx2idcmp1jwm0g4jxr54fyn5ay3lf"
-                     else if stdenv.isLinux then "000mmv5iblnmwydfdvg5izli3vpb6l14xy4qy3smcikpf0h87fhl"
+                     else if stdenv.isLinux then "1bv1yjk3rm1czibqagmh719m4r1x8j8bmh3nw40x7izm2sx0qg7v"
                      else throw "unsupported platform";
     platformLdLibraryPath = if stdenv.isDarwin then "DYLD_FALLBACK_LIBRARY_PATH"
                      else if stdenv.isLinux then "LD_LIBRARY_PATH"
@@ -14,7 +14,7 @@ let platformString = if stdenv.isDarwin then "osx"
 in
 stdenv.mkDerivation rec {
   name = "powershell-${version}";
-  version = "6.0.2";
+  version = "6.0.3";
 
   src = fetchzip {
     url = "https://github.com/PowerShell/PowerShell/releases/download/v${version}/powershell-${version}-${platformString}-x64.tar.gz";