nixpkgs/pkgs/shells/powershell/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

90 lines
3.2 KiB
Nix
Raw Normal View History

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