lgogdownloader: enable build on aarch64-darwin when enableGui is disabled

This commit is contained in:
Thierry Delafontaine
2025-08-03 18:28:34 +02:00
committed by Thierry Delafontaine
parent 4bf617675f
commit c244571901
+3 -1
View File
@@ -63,7 +63,9 @@ stdenv.mkDerivation (finalAttrs: {
mainProgram = "lgogdownloader";
homepage = "https://github.com/Sude-/lgogdownloader";
license = lib.licenses.wtfpl;
# qtbase requires a sandbox profile with read access to /usr/share/icu.
# To prevent build failures in CI, we disable Darwin support when the GUI is enabled.
platforms = lib.platforms.linux ++ lib.optionals (!enableGui) lib.platforms.darwin;
maintainers = with lib.maintainers; [ _0x4A6F ];
platforms = lib.platforms.linux;
};
})