powershell: update supported platforms

This commit is contained in:
Jonathan Ringer 2020-02-22 12:58:33 -08:00 committed by Jon
parent d5220977a4
commit 7e1b217785

View File

@ -30,22 +30,23 @@ stdenv.mkDerivation rec {
mkdir -p $out/bin mkdir -p $out/bin
mkdir -p $out/share/powershell mkdir -p $out/share/powershell
cp -r * $out/share/powershell cp -r * $out/share/powershell
makeWrapper $out/share/powershell/pwsh $out/bin/pwsh --prefix ${platformLdLibraryPath} : "${stdenv.lib.makeLibraryPath libraries}" \ makeWrapper $out/share/powershell/pwsh $out/bin/pwsh \
--set TERM xterm --set POWERSHELL_TELEMETRY_OPTOUT 1 --set DOTNET_CLI_TELEMETRY_OPTOUT 1 --prefix ${platformLdLibraryPath} : "${stdenv.lib.makeLibraryPath libraries}" \
--set TERM xterm --set POWERSHELL_TELEMETRY_OPTOUT 1 --set DOTNET_CLI_TELEMETRY_OPTOUT 1
''; '';
dontStrip = true; dontStrip = true;
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "Cross-platform (Windows, Linux, and macOS) automation and configuration tool/framework"; description = "Cross-platform (Windows, Linux, and macOS) automation and configuration tool/framework";
homepage = https://github.com/PowerShell/PowerShell; homepage = "https://github.com/PowerShell/PowerShell";
maintainers = [ maintainers.yrashk ]; maintainers = [ maintainers.yrashk ];
platforms = platforms.unix; platforms = [ "x86_64-darwin" "x86_64-linux" ];
license = with licenses; [ mit ]; license = with licenses; [ mit ];
}; };
passthru = { passthru = {
shellPath = "/bin/pwsh"; shellPath = "/bin/pwsh";
}; };
} }