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:
IvarWithoutBones 2021-12-20 21:52:57 +01:00
parent d86330d54e
commit 0f3d546116
3 changed files with 3 additions and 3 deletions

View file

@ -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;

View file

@ -85,8 +85,6 @@ buildDotnetModule rec {
})
];
dontWrapGApps = true;
passthru = {
updateScript = ./update.sh;
tests = {

View file

@ -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";