Remove in-tree third party dependencies (#4405)

This commit is contained in:
Seth Flynn 2025-11-28 07:59:20 -05:00 committed by GitHub
commit 5c8b18098f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
16 changed files with 64 additions and 496 deletions

View file

@ -15,12 +15,8 @@
tomlplusplus,
zlib,
msaClientID ? null,
gamemodeSupport ? stdenv.hostPlatform.isLinux,
libarchive,
}:
assert lib.assertMsg (
gamemodeSupport -> stdenv.hostPlatform.isLinux
) "gamemodeSupport is only available on Linux.";
let
date =
@ -82,7 +78,7 @@ stdenv.mkDerivation {
tomlplusplus
zlib
]
++ lib.optional gamemodeSupport gamemode;
++ lib.optional stdenv.hostPlatform.isLinux gamemode;
cmakeFlags = [
# downstream branding

View file

@ -51,7 +51,7 @@ assert lib.assertMsg (
) "textToSpeechSupport only has an effect on Linux.";
let
prismlauncher' = prismlauncher-unwrapped.override { inherit msaClientID gamemodeSupport; };
prismlauncher' = prismlauncher-unwrapped.override { inherit msaClientID; };
in
symlinkJoin {