summary refs log tree commit diff
path: root/pkgs/shells
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2019-01-16 15:21:44 -0800
committerR. RyanTM <ryantm-bot@ryantm.com>2019-01-16 15:21:44 -0800
commit1ac0f6b36b10f5819f35413ed85d90ba06690261 (patch)
treec55df4e59fd9dec68d6eb3d87cec99715326f7ac /pkgs/shells
parent36c904d6372dd55d039ff5f52d0f9058d3ac5556 (diff)
downloadnixpkgs-1ac0f6b36b10f5819f35413ed85d90ba06690261.tar
nixpkgs-1ac0f6b36b10f5819f35413ed85d90ba06690261.tar.gz
nixpkgs-1ac0f6b36b10f5819f35413ed85d90ba06690261.tar.bz2
nixpkgs-1ac0f6b36b10f5819f35413ed85d90ba06690261.tar.lz
nixpkgs-1ac0f6b36b10f5819f35413ed85d90ba06690261.tar.xz
nixpkgs-1ac0f6b36b10f5819f35413ed85d90ba06690261.tar.zst
nixpkgs-1ac0f6b36b10f5819f35413ed85d90ba06690261.zip
powershell: 6.1.1 -> 6.1.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')
-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";