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
|
# Stripping breaks the executable
|
||||||
dontStrip = true;
|
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_NOLOGO = true; # This disables the welcome message.
|
||||||
DOTNET_CLI_TELEMETRY_OPTOUT = true;
|
DOTNET_CLI_TELEMETRY_OPTOUT = true;
|
||||||
|
|
||||||
|
|
|
@ -85,8 +85,6 @@ buildDotnetModule rec {
|
||||||
})
|
})
|
||||||
];
|
];
|
||||||
|
|
||||||
dontWrapGApps = true;
|
|
||||||
|
|
||||||
passthru = {
|
passthru = {
|
||||||
updateScript = ./update.sh;
|
updateScript = ./update.sh;
|
||||||
tests = {
|
tests = {
|
||||||
|
|
|
@ -52,7 +52,6 @@ buildDotnetModule rec {
|
||||||
];
|
];
|
||||||
|
|
||||||
autoPatchelfIgnoreMissingDeps = true; # Attempts to patchelf unneeded SOs
|
autoPatchelfIgnoreMissingDeps = true; # Attempts to patchelf unneeded SOs
|
||||||
dontWrapGApps = true; # gappsWrapperArgs gets included when wrapping the application for dotnet.
|
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "A tracking application for A Link to the Past Randomizer";
|
description = "A tracking application for A Link to the Past Randomizer";
|
||||||
|
|
Loading…
Reference in a new issue