2018-11-24 02:13:31 +00:00
|
|
|
{ stdenv, autoPatchelfHook, fetchzip, libunwind, libuuid, icu, curl
|
2019-08-22 15:47:25 +01:00
|
|
|
, darwin, makeWrapper, less, openssl_1_0_2, pam, lttng-ust }:
|
2018-05-30 02:08:50 +01:00
|
|
|
|
|
|
|
let platformString = if stdenv.isDarwin then "osx"
|
|
|
|
else if stdenv.isLinux then "linux"
|
|
|
|
else throw "unsupported platform";
|
2019-09-28 02:10:23 +01:00
|
|
|
platformSha = if stdenv.isDarwin then "0jb2xm79m3m14zk7v730ai1zvxcb5a13jbkkya0qy7332k6gn6bl"
|
|
|
|
else if stdenv.isLinux then "0s0jvc9ha6fw8qy7f5n0v6zf043rawsjdlm5wvqxq1q2idz7xcw1"
|
2018-05-30 02:08:50 +01:00
|
|
|
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";
|
2019-08-22 15:47:25 +01:00
|
|
|
libraries = [ libunwind libuuid icu curl openssl_1_0_2 ] ++
|
2018-11-24 02:13:31 +00:00
|
|
|
(if stdenv.isLinux then [ pam lttng-ust ] else [ darwin.Libsystem ]);
|
2018-05-30 02:08:50 +01:00
|
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "powershell";
|
2019-09-28 02:10:23 +01:00
|
|
|
version = "6.2.3";
|
2018-05-30 02:08:50 +01:00
|
|
|
|
|
|
|
src = fetchzip {
|
|
|
|
url = "https://github.com/PowerShell/PowerShell/releases/download/v${version}/powershell-${version}-${platformString}-x64.tar.gz";
|
|
|
|
sha256 = platformSha;
|
|
|
|
stripRoot = false;
|
|
|
|
};
|
|
|
|
|
2018-06-13 23:08:46 +01:00
|
|
|
buildInputs = [ less ] ++ libraries;
|
|
|
|
nativeBuildInputs = [ autoPatchelfHook makeWrapper ];
|
2018-05-30 02:08:50 +01:00
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/bin
|
|
|
|
mkdir -p $out/share/powershell
|
|
|
|
cp -r * $out/share/powershell
|
2018-06-13 02:00:30 +01:00
|
|
|
makeWrapper $out/share/powershell/pwsh $out/bin/pwsh --prefix ${platformLdLibraryPath} : "${stdenv.lib.makeLibraryPath libraries}" \
|
2019-11-29 23:00:00 +00:00
|
|
|
--set TERM xterm --set POWERSHELL_TELEMETRY_OPTOUT 1 --set DOTNET_CLI_TELEMETRY_OPTOUT 1
|
2018-05-30 02:08:50 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
dontStrip = true;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Cross-platform (Windows, Linux, and macOS) automation and configuration tool/framework";
|
|
|
|
homepage = https://github.com/PowerShell/PowerShell;
|
|
|
|
maintainers = [ maintainers.yrashk ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
license = with licenses; [ mit ];
|
|
|
|
};
|
|
|
|
|
2019-12-31 18:25:47 +00:00
|
|
|
passthru = {
|
|
|
|
shellPath = "/bin/pwsh";
|
|
|
|
};
|
|
|
|
|
2018-05-30 02:08:50 +01:00
|
|
|
}
|