summary refs log tree commit diff
path: root/pkgs/shells/powershell/default.nix
diff options
context:
space:
mode:
authorYurii Rashkovskii <yrashk@gmail.com>2018-08-13 10:01:53 +0700
committerYurii Rashkovskii <yrashk@gmail.com>2018-08-13 10:01:53 +0700
commite4ce866f318d817e6b1e662d292556fa2aac0387 (patch)
treea63e593fee345662574bcc5b39fe00c7372f1f63 /pkgs/shells/powershell/default.nix
parenta1b79f63bd80473ae9ad43ed372d282d734fc3b1 (diff)
downloadnixpkgs-e4ce866f318d817e6b1e662d292556fa2aac0387.tar
nixpkgs-e4ce866f318d817e6b1e662d292556fa2aac0387.tar.gz
nixpkgs-e4ce866f318d817e6b1e662d292556fa2aac0387.tar.bz2
nixpkgs-e4ce866f318d817e6b1e662d292556fa2aac0387.tar.lz
nixpkgs-e4ce866f318d817e6b1e662d292556fa2aac0387.tar.xz
nixpkgs-e4ce866f318d817e6b1e662d292556fa2aac0387.tar.zst
nixpkgs-e4ce866f318d817e6b1e662d292556fa2aac0387.zip
powershell: 6.0.3 -> 6.0.4
Diffstat (limited to 'pkgs/shells/powershell/default.nix')
-rw-r--r--pkgs/shells/powershell/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/shells/powershell/default.nix b/pkgs/shells/powershell/default.nix
index e0654e131dc..a9b34824e49 100644
--- a/pkgs/shells/powershell/default.nix
+++ b/pkgs/shells/powershell/default.nix
@@ -4,8 +4,8 @@
 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 "1bv1yjk3rm1czibqagmh719m4r1x8j8bmh3nw40x7izm2sx0qg7v"
+    platformSha = if stdenv.isDarwin then "01j92myljgphf68la9q753m5wgfmd0kwlsk441yic7qshcly5xkw"
+                     else if stdenv.isLinux then "0al1mrlz3m5ksnq86mqm0axb8bjdxa05j2p5y9bmcykrgkdwi3vk"
                      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.3";
+  version = "6.0.4";
 
   src = fetchzip {
     url = "https://github.com/PowerShell/PowerShell/releases/download/v${version}/powershell-${version}-${platformString}-x64.tar.gz";