summary refs log tree commit diff
path: root/pkgs/shells/powershell
diff options
context:
space:
mode:
authorworldofpeace <worldofpeace@users.noreply.github.com>2018-11-23 21:13:31 -0500
committerRobin Gloster <mail@glob.in>2018-11-24 03:56:35 +0100
commit598fcb04211a11d077bd01205472b440f68e1bc2 (patch)
treef6b7cdf07c917686d2938c2a648d6da1e104f9a6 /pkgs/shells/powershell
parentaf9ba3758fe4061ca755ae3a1baee17800c09d9f (diff)
downloadnixpkgs-598fcb04211a11d077bd01205472b440f68e1bc2.tar
nixpkgs-598fcb04211a11d077bd01205472b440f68e1bc2.tar.gz
nixpkgs-598fcb04211a11d077bd01205472b440f68e1bc2.tar.bz2
nixpkgs-598fcb04211a11d077bd01205472b440f68e1bc2.tar.lz
nixpkgs-598fcb04211a11d077bd01205472b440f68e1bc2.tar.xz
nixpkgs-598fcb04211a11d077bd01205472b440f68e1bc2.tar.zst
nixpkgs-598fcb04211a11d077bd01205472b440f68e1bc2.zip
powershell: 6.1.0 -> 6.1.1
Also fix libraries for darwin.

Closes #50966

Co-authored-by: Robin Gloster <mail@glob.in>
Diffstat (limited to 'pkgs/shells/powershell')
-rw-r--r--pkgs/shells/powershell/default.nix13
1 files changed, 7 insertions, 6 deletions
diff --git a/pkgs/shells/powershell/default.nix b/pkgs/shells/powershell/default.nix
index 2c89ea0f2c6..b846f88c0fa 100644
--- a/pkgs/shells/powershell/default.nix
+++ b/pkgs/shells/powershell/default.nix
@@ -1,20 +1,21 @@
-{ stdenv, autoPatchelfHook, fetchzip, libunwind, libuuid, icu, curl,
-  makeWrapper, less, openssl, pam, lttng-ust }:
+{ stdenv, autoPatchelfHook, fetchzip, libunwind, libuuid, icu, curl
+, darwin, makeWrapper, less, openssl, pam, lttng-ust }:
 
 let platformString = if stdenv.isDarwin then "osx"
                      else if stdenv.isLinux then "linux"
                      else throw "unsupported platform";
-    platformSha = if stdenv.isDarwin then "0jngmqxjiiz5dpgky027wl0s3nn321rxs6kxab27kmp031j65x8g"
-                     else if stdenv.isLinux then "0nmqv32mck16b7zljfpb9ydg3h2jvcqrid9ga2i5wac26x3ix531"
+    platformSha = if stdenv.isDarwin then "1zm5q25ny2x6wvdqfrc380467zq0nbrzh2rzldwdkdpkb6wbvpj8"
+                     else if stdenv.isLinux then "0wh5vvh8pk75fy37bm5av4xvp76slqyjhb6a0al55vw9rlg5q3xw"
                      else throw "unsupported platform";
     platformLdLibraryPath = if stdenv.isDarwin then "DYLD_FALLBACK_LIBRARY_PATH"
                      else if stdenv.isLinux then "LD_LIBRARY_PATH"
                      else throw "unsupported platform";
-    libraries = [ libunwind libuuid icu curl openssl lttng-ust ] ++ (if stdenv.isLinux then [ pam ] else []);
+                     libraries = [ libunwind libuuid icu curl openssl ] ++
+                       (if stdenv.isLinux then [ pam lttng-ust ] else [ darwin.Libsystem ]);
 in
 stdenv.mkDerivation rec {
   name = "powershell-${version}";
-  version = "6.1.0";
+  version = "6.1.1";
 
   src = fetchzip {
     url = "https://github.com/PowerShell/PowerShell/releases/download/v${version}/powershell-${version}-${platformString}-x64.tar.gz";