summary refs log tree commit diff
path: root/pkgs/shells/powershell/default.nix
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2019-06-02 06:25:25 -0700
committerMario Rodas <marsam@users.noreply.github.com>2019-06-02 13:12:23 -0500
commitcbc5f612c29d1c39022b90e80be6134ef19c8e51 (patch)
treeef8c26c502c12cd99540bb18e22a6a1b89f7a1c6 /pkgs/shells/powershell/default.nix
parentf05fcf41be929f51b3d4ecdc58b41f328a744774 (diff)
downloadnixpkgs-cbc5f612c29d1c39022b90e80be6134ef19c8e51.tar
nixpkgs-cbc5f612c29d1c39022b90e80be6134ef19c8e51.tar.gz
nixpkgs-cbc5f612c29d1c39022b90e80be6134ef19c8e51.tar.bz2
nixpkgs-cbc5f612c29d1c39022b90e80be6134ef19c8e51.tar.lz
nixpkgs-cbc5f612c29d1c39022b90e80be6134ef19c8e51.tar.xz
nixpkgs-cbc5f612c29d1c39022b90e80be6134ef19c8e51.tar.zst
nixpkgs-cbc5f612c29d1c39022b90e80be6134ef19c8e51.zip
powershell: 6.2.0 -> 6.2.1
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/powershell/versions
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 4c4733bc9cd..8a5956161e0 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 "1jcrrgybcyq9kwyqxshsfm5fy3sa77h3795xx3rvrs8k434nl1yb"
-                     else if stdenv.isLinux then "1hlis827wmnjcy4h8va50093pmnqdhkbnbimmkymzmcvmkbmi9nx"
+    platformSha = if stdenv.isDarwin then "0w4dvkbi9jbybq7kvcgdccv8byp4ahlah45w2z8fwq961h3qnhg1"
+                     else if stdenv.isLinux then "19dagxqvw0fpsjm6vbimqbax3bkmdm6wwifkfaq3ylrk0a9wwsrm"
                      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 {
   name = "powershell-${version}";
-  version = "6.2.0";
+  version = "6.2.1";
 
   src = fetchzip {
     url = "https://github.com/PowerShell/PowerShell/releases/download/v${version}/powershell-${version}-${platformString}-x64.tar.gz";