2018-11-24 02:13:31 +00:00
|
|
|
{ stdenv, autoPatchelfHook, fetchzip, libunwind, libuuid, icu, curl
|
|
|
|
, darwin, makeWrapper, less, openssl, pam, lttng-ust }:
|
2018-05-30 01:08:50 +00:00
|
|
|
|
|
|
|
let platformString = if stdenv.isDarwin then "osx"
|
|
|
|
else if stdenv.isLinux then "linux"
|
|
|
|
else throw "unsupported platform";
|
2018-11-24 02:13:31 +00:00
|
|
|
platformSha = if stdenv.isDarwin then "1zm5q25ny2x6wvdqfrc380467zq0nbrzh2rzldwdkdpkb6wbvpj8"
|
2019-01-16 23:21:44 +00:00
|
|
|
else if stdenv.isLinux then "021ag632jcn7f1vpddann04xifgsq3wrx93hzbvq7cngg8y16r3y"
|
2018-05-30 01:08:50 +00: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";
|
2018-11-24 02:13:31 +00:00
|
|
|
libraries = [ libunwind libuuid icu curl openssl ] ++
|
|
|
|
(if stdenv.isLinux then [ pam lttng-ust ] else [ darwin.Libsystem ]);
|
2018-05-30 01:08:50 +00:00
|
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "powershell-${version}";
|
2019-01-16 23:21:44 +00:00
|
|
|
version = "6.1.2";
|
2018-05-30 01:08:50 +00: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 22:08:46 +00:00
|
|
|
buildInputs = [ less ] ++ libraries;
|
|
|
|
nativeBuildInputs = [ autoPatchelfHook makeWrapper ];
|
2018-05-30 01:08:50 +00:00
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/bin
|
|
|
|
mkdir -p $out/share/powershell
|
|
|
|
cp -r * $out/share/powershell
|
2018-06-13 01:00:30 +00:00
|
|
|
makeWrapper $out/share/powershell/pwsh $out/bin/pwsh --prefix ${platformLdLibraryPath} : "${stdenv.lib.makeLibraryPath libraries}" \
|
2018-10-10 20:52:38 +00:00
|
|
|
--set TERM xterm --set POWERSHELL_TELEMETRY_OPTOUT 1
|
2018-05-30 01:08:50 +00: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 ];
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|