summary refs log tree commit diff
path: root/pkgs/shells
diff options
context:
space:
mode:
authorJörg Thalheim <Mic92@users.noreply.github.com>2019-01-17 00:01:08 +0000
committerGitHub <noreply@github.com>2019-01-17 00:01:08 +0000
commit3704524a3610eaae7e8477638a0bb2f354b73828 (patch)
tree88a48748d66cf5726e178a87383af7d86232b519 /pkgs/shells
parentbb885d502ae2b1de0f15b7422dbcfc83eda20715 (diff)
parent1ac0f6b36b10f5819f35413ed85d90ba06690261 (diff)
downloadnixpkgs-3704524a3610eaae7e8477638a0bb2f354b73828.tar
nixpkgs-3704524a3610eaae7e8477638a0bb2f354b73828.tar.gz
nixpkgs-3704524a3610eaae7e8477638a0bb2f354b73828.tar.bz2
nixpkgs-3704524a3610eaae7e8477638a0bb2f354b73828.tar.lz
nixpkgs-3704524a3610eaae7e8477638a0bb2f354b73828.tar.xz
nixpkgs-3704524a3610eaae7e8477638a0bb2f354b73828.tar.zst
nixpkgs-3704524a3610eaae7e8477638a0bb2f354b73828.zip
Merge pull request #54126 from r-ryantm/auto-update/powershell
powershell: 6.1.1 -> 6.1.2
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 b846f88c0fa..f40a67f7e52 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 "1zm5q25ny2x6wvdqfrc380467zq0nbrzh2rzldwdkdpkb6wbvpj8"
-                     else if stdenv.isLinux then "0wh5vvh8pk75fy37bm5av4xvp76slqyjhb6a0al55vw9rlg5q3xw"
+                     else if stdenv.isLinux then "021ag632jcn7f1vpddann04xifgsq3wrx93hzbvq7cngg8y16r3y"
                      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.1.1";
+  version = "6.1.2";
 
   src = fetchzip {
     url = "https://github.com/PowerShell/PowerShell/releases/download/v${version}/powershell-${version}-${platformString}-x64.tar.gz";