powershell: remove env-vars from output

This commit is contained in:
Peder Bergebakken Sundt
2025-05-01 17:58:49 +02:00
parent 8bf098259e
commit 9dbb7d3459
+8 -1
View File
@@ -38,7 +38,14 @@ stdenv.mkDerivation rec {
passthru.sources.${stdenv.hostPlatform.system}
or (throw "Unsupported system: ${stdenv.hostPlatform.system}");
sourceRoot = ".";
sourceRoot = "source";
unpackPhase = ''
runHook preUnpack
mkdir -p "$sourceRoot"
tar xf $src --directory="$sourceRoot"
runHook postUnpack
'';
strictDeps = true;