buildDotnetModule: set dontWrapGApps to avoid double wrapping
This also removes the flag from opentabletdriver and opentracker, which manually set it before.
This commit is contained in:
parent
d86330d54e
commit
0f3d546116
3 changed files with 3 additions and 3 deletions
|
@ -110,6 +110,9 @@ let
|
|||
# Stripping breaks the executable
|
||||
dontStrip = true;
|
||||
|
||||
# gappsWrapperArgs gets included when wrapping for dotnet, as to avoid double wrapping
|
||||
dontWrapGApps = true;
|
||||
|
||||
DOTNET_NOLOGO = true; # This disables the welcome message.
|
||||
DOTNET_CLI_TELEMETRY_OPTOUT = true;
|
||||
|
||||
|
|
|
@ -85,8 +85,6 @@ buildDotnetModule rec {
|
|||
})
|
||||
];
|
||||
|
||||
dontWrapGApps = true;
|
||||
|
||||
passthru = {
|
||||
updateScript = ./update.sh;
|
||||
tests = {
|
||||
|
|
|
@ -52,7 +52,6 @@ buildDotnetModule rec {
|
|||
];
|
||||
|
||||
autoPatchelfIgnoreMissingDeps = true; # Attempts to patchelf unneeded SOs
|
||||
dontWrapGApps = true; # gappsWrapperArgs gets included when wrapping the application for dotnet.
|
||||
|
||||
meta = with lib; {
|
||||
description = "A tracking application for A Link to the Past Randomizer";
|
||||
|
|
Loading…
Reference in a new issue