buildDotnetModule: set dontWrapGApps to avoid double wrapping

This also removes the flag from opentabletdriver and opentracker, which
manually set it before.
main
IvarWithoutBones 2 years ago
parent d86330d54e
commit 0f3d546116
  1. 3
      pkgs/build-support/build-dotnet-module/default.nix
  2. 2
      pkgs/tools/X11/opentabletdriver/default.nix
  3. 1
      pkgs/tools/games/opentracker/default.nix

@ -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…
Cancel
Save