nixpkgs/pkgs/shells/powershell/default.nix

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

92 lines
3.5 KiB
Nix
Raw Normal View History

2020-04-30 21:47:54 +00:00
{ stdenv, lib, autoPatchelfHook, fetchzip, libunwind, libuuid, icu, curl
, darwin, makeWrapper, less, openssl_1_1, 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";
platformSha = if (stdenv.isDarwin && stdenv.isx86_64) then "sha256-JKB7Oy+3KWtVo1Aqmc7vZiO88FrF9+8N/tdGlvIQolM="
else if (stdenv.isDarwin && stdenv.isAarch64) then "sha256-9UwB1tT2VaW+favw/KWPziFMSRWcw7AqeeZvbaGOBqc="
else if (stdenv.isLinux && stdenv.isx86_64) then "sha256-kAcT9av4PFZfYqpS0XwKC0IiquUcVtN30Mq649PUnSM="
else if (stdenv.isLinux && stdenv.isAarch64) then "sha256-3Lm9WYVcfkEVfji/h52VqFy1Jo1AiSQ22JhEGiCPzzM="
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";
libraries = [ libunwind libuuid icu curl openssl_1_1 ] ++
(if stdenv.isLinux then [ pam lttng-ust ] else [ darwin.Libsystem ]);
2018-05-30 01:08:50 +00:00
in
stdenv.mkDerivation rec {
pname = "powershell";
version = "7.3.2";
2018-05-30 01:08:50 +00:00
src = fetchzip {
url = "https://github.com/PowerShell/PowerShell/releases/download/v${version}/powershell-${version}-${platformString}-${archString}.tar.gz";
2018-05-30 01:08:50 +00:00
sha256 = platformSha;
stripRoot = false;
};
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
2020-04-30 21:47:54 +00:00
rm -f $pslibs/libcrypto${ext}.1.0.0
rm -f $pslibs/libssl${ext}.1.0.0
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
2020-04-30 21:47:54 +00:00
ls $pslibs
'' + lib.optionalString (!stdenv.isDarwin && !stdenv.isAarch64) ''
2020-04-30 21:47:54 +00:00
patchelf --replace-needed libcrypto${ext}.1.0.0 libcrypto${ext}.1.1 $pslibs/libmi.so
patchelf --replace-needed libssl${ext}.1.0.0 libssl${ext}.1.1 $pslibs/libmi.so
'' + lib.optionalString (!stdenv.isDarwin) ''
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
}