2023-05-30 10:04:59 +02:00
|
|
|
{ stdenv, lib, autoPatchelfHook, fetchurl, libunwind, libuuid, icu, curl
|
2023-05-30 06:23:31 +02:00
|
|
|
, darwin, makeWrapper, less, openssl, pam, lttng-ust }:
|
2018-05-30 03:08:50 +02:00
|
|
|
|
2021-06-06 22:45:12 +02:00
|
|
|
let archString = if stdenv.isAarch64 then "arm64"
|
|
|
|
else if stdenv.isx86_64 then "x64"
|
|
|
|
else throw "unsupported platform";
|
|
|
|
platformString = if stdenv.isDarwin then "osx"
|
2018-05-30 03:08:50 +02:00
|
|
|
else if stdenv.isLinux then "linux"
|
|
|
|
else throw "unsupported platform";
|
2023-05-30 10:04:59 +02:00
|
|
|
platformHash = {
|
|
|
|
x86_64-darwin = "sha256-FX3OyVzwU+Ms2tgjpZ4dPdjeJx2H5541dQZAjhI3n1U=";
|
|
|
|
aarch64-darwin = "sha256-Dg7FRF5inRnzP6tjDhIgHTJ1J2EQXnegqimZPK574WQ=";
|
|
|
|
x86_64-linux = "sha256-6F1VROE6kk+LLEpdwtQ6vkbkZjP4no0TjTnAqurLmXY=";
|
|
|
|
aarch64-linux = "sha256-NO4E2TOUIYyUFJmi3zKJzOyP0/rTPTZgJZcebVNkSfk=";
|
|
|
|
}.${stdenv.hostPlatform.system} or (throw "unsupported platform");
|
2018-05-30 03:08:50 +02:00
|
|
|
platformLdLibraryPath = if stdenv.isDarwin then "DYLD_FALLBACK_LIBRARY_PATH"
|
|
|
|
else if stdenv.isLinux then "LD_LIBRARY_PATH"
|
|
|
|
else throw "unsupported platform";
|
2023-05-30 06:23:31 +02:00
|
|
|
libraries = [ libunwind libuuid icu curl openssl ] ++
|
2018-11-24 03:13:31 +01:00
|
|
|
(if stdenv.isLinux then [ pam lttng-ust ] else [ darwin.Libsystem ]);
|
2018-05-30 03:08:50 +02:00
|
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "powershell";
|
2023-05-30 10:04:59 +02:00
|
|
|
version = "7.3.4";
|
2018-05-30 03:08:50 +02:00
|
|
|
|
2023-05-30 10:04:59 +02:00
|
|
|
src = fetchurl {
|
2021-06-06 22:45:12 +02:00
|
|
|
url = "https://github.com/PowerShell/PowerShell/releases/download/v${version}/powershell-${version}-${platformString}-${archString}.tar.gz";
|
2023-05-30 10:04:59 +02:00
|
|
|
hash = platformHash;
|
2018-05-30 03:08:50 +02:00
|
|
|
};
|
|
|
|
|
2023-05-30 10:04:59 +02:00
|
|
|
sourceRoot = ".";
|
|
|
|
|
2022-05-06 20:39:28 +02:00
|
|
|
strictDeps = true;
|
2018-06-14 00:08:46 +02:00
|
|
|
buildInputs = [ less ] ++ libraries;
|
2022-03-22 18:59:05 +01:00
|
|
|
nativeBuildInputs = [ makeWrapper ]
|
|
|
|
++ lib.optional stdenv.isLinux autoPatchelfHook;
|
2018-05-30 03:08:50 +02:00
|
|
|
|
2020-04-30 23:47:54 +02:00
|
|
|
installPhase =
|
|
|
|
let
|
|
|
|
ext = stdenv.hostPlatform.extensions.sharedLibrary;
|
|
|
|
in ''
|
2020-04-06 13:40:22 +02:00
|
|
|
pslibs=$out/share/powershell
|
|
|
|
mkdir -p $pslibs
|
|
|
|
|
|
|
|
cp -r * $pslibs
|
|
|
|
|
2021-08-17 16:44:58 +02:00
|
|
|
# At least the 7.1.4-osx package does not have the executable bit set.
|
2021-05-18 16:36:25 +02:00
|
|
|
chmod a+x $pslibs/pwsh
|
|
|
|
|
2023-05-30 06:23:31 +02:00
|
|
|
'' + lib.optionalString (stdenv.isLinux && stdenv.isx86_64) ''
|
|
|
|
patchelf --replace-needed libcrypto${ext}.1.0.0 libcrypto${ext} $pslibs/libmi.so
|
|
|
|
patchelf --replace-needed libssl${ext}.1.0.0 libssl${ext} $pslibs/libmi.so
|
|
|
|
'' + lib.optionalString stdenv.isLinux ''
|
2021-09-17 18:35:29 +02:00
|
|
|
patchelf --replace-needed liblttng-ust${ext}.0 liblttng-ust${ext}.1 $pslibs/libcoreclrtraceptprovider.so
|
2020-04-30 23:47:54 +02:00
|
|
|
'' + ''
|
|
|
|
|
|
|
|
mkdir -p $out/bin
|
2020-04-06 13:40:22 +02:00
|
|
|
|
|
|
|
makeWrapper $pslibs/pwsh $out/bin/pwsh \
|
2021-01-15 07:28:56 +01:00
|
|
|
--prefix ${platformLdLibraryPath} : "${lib.makeLibraryPath libraries}" \
|
2020-02-22 21:58:33 +01:00
|
|
|
--set TERM xterm --set POWERSHELL_TELEMETRY_OPTOUT 1 --set DOTNET_CLI_TELEMETRY_OPTOUT 1
|
2018-05-30 03:08:50 +02:00
|
|
|
'';
|
|
|
|
|
|
|
|
dontStrip = true;
|
|
|
|
|
2020-04-30 23:47:54 +02:00
|
|
|
doInstallCheck = true;
|
2020-06-05 23:52:09 +02:00
|
|
|
installCheckPhase = ''
|
2021-05-18 16:36:25 +02:00
|
|
|
# May need a writable home, seen on Darwin.
|
|
|
|
HOME=$TMP $out/bin/pwsh --help > /dev/null
|
2020-04-30 23:47:54 +02:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with lib; {
|
2020-04-06 13:40:22 +02:00
|
|
|
description = "Powerful cross-platform (Windows, Linux, and macOS) shell and scripting language based on .NET";
|
2020-02-22 21:58:33 +01:00
|
|
|
homepage = "https://github.com/PowerShell/PowerShell";
|
2022-06-17 01:40:08 +02:00
|
|
|
sourceProvenance = with sourceTypes; [
|
|
|
|
binaryBytecode
|
|
|
|
binaryNativeCode
|
|
|
|
];
|
2021-09-17 18:35:29 +02:00
|
|
|
maintainers = with maintainers; [ yrashk srgom p3psi ];
|
2022-04-01 21:34:55 +02:00
|
|
|
mainProgram = "pwsh";
|
2021-11-09 16:25:47 +01:00
|
|
|
platforms = [ "x86_64-darwin" "x86_64-linux" "aarch64-linux" "aarch64-darwin" ];
|
2018-05-30 03:08:50 +02:00
|
|
|
license = with licenses; [ mit ];
|
|
|
|
};
|
|
|
|
|
2020-02-22 21:58:33 +01:00
|
|
|
passthru = {
|
|
|
|
shellPath = "/bin/pwsh";
|
2019-12-31 19:25:47 +01:00
|
|
|
};
|
|
|
|
|
2018-05-30 03:08:50 +02:00
|
|
|
}
|