summary refs log tree commit diff
path: root/pkgs/shells/powershell
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2019-07-19 19:27:40 -0700
committerR. RyanTM <ryantm-bot@ryantm.com>2019-07-19 19:27:40 -0700
commit7d2643af886400e77c4697e863b0d9bf245225cb (patch)
treeab3b8a22b776cd41c790f06e0fe5143c14f041e8 /pkgs/shells/powershell
parent2cd892423587d3843b0f6e8dd90ceba92e56becc (diff)
downloadnixpkgs-7d2643af886400e77c4697e863b0d9bf245225cb.tar
nixpkgs-7d2643af886400e77c4697e863b0d9bf245225cb.tar.gz
nixpkgs-7d2643af886400e77c4697e863b0d9bf245225cb.tar.bz2
nixpkgs-7d2643af886400e77c4697e863b0d9bf245225cb.tar.lz
nixpkgs-7d2643af886400e77c4697e863b0d9bf245225cb.tar.xz
nixpkgs-7d2643af886400e77c4697e863b0d9bf245225cb.tar.zst
nixpkgs-7d2643af886400e77c4697e863b0d9bf245225cb.zip
powershell: 6.2.1 -> 6.2.2
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')
-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 8a5956161e0..ccf1950b9c9 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 "0w4dvkbi9jbybq7kvcgdccv8byp4ahlah45w2z8fwq961h3qnhg1"
-                     else if stdenv.isLinux then "19dagxqvw0fpsjm6vbimqbax3bkmdm6wwifkfaq3ylrk0a9wwsrm"
+                     else if stdenv.isLinux then "1b3n6d2xgvqybmh61smyr415sfaymiilixlvs04yxm6ajsbnsm82"
                      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.1";
+  version = "6.2.2";
 
   src = fetchzip {
     url = "https://github.com/PowerShell/PowerShell/releases/download/v${version}/powershell-${version}-${platformString}-x64.tar.gz";