mirror of
https://github.com/PrismLauncher/PrismLauncher.git
synced 2026-07-08 13:08:29 +02:00
Remove in-tree third party dependencies (#4405)
Some checks failed
Build / Build (Linux) (push) Has been cancelled
Build / Build (Linux-aarch64) (push) Has been cancelled
Build / Build (Windows-MSVC) (push) Has been cancelled
Build / Build (Windows-MSVC-arm64) (push) Has been cancelled
Build / Build (Windows-MinGW-arm64) (push) Has been cancelled
Build / Build (Windows-MinGW-w64) (push) Has been cancelled
Build / Build (macOS) (push) Has been cancelled
CodeQL Code Scanning / CodeQL (push) Has been cancelled
Flatpak / Build (aarch64) (push) Has been cancelled
Flatpak / Build (x86_64) (push) Has been cancelled
Nix / Build (aarch64-darwin) (push) Has been cancelled
Nix / Build (x86_64-darwin) (push) Has been cancelled
Nix / Build (x86_64-linux) (push) Has been cancelled
Nix / Build (aarch64-linux) (push) Has been cancelled
Some checks failed
Build / Build (Linux) (push) Has been cancelled
Build / Build (Linux-aarch64) (push) Has been cancelled
Build / Build (Windows-MSVC) (push) Has been cancelled
Build / Build (Windows-MSVC-arm64) (push) Has been cancelled
Build / Build (Windows-MinGW-arm64) (push) Has been cancelled
Build / Build (Windows-MinGW-w64) (push) Has been cancelled
Build / Build (macOS) (push) Has been cancelled
CodeQL Code Scanning / CodeQL (push) Has been cancelled
Flatpak / Build (aarch64) (push) Has been cancelled
Flatpak / Build (x86_64) (push) Has been cancelled
Nix / Build (aarch64-darwin) (push) Has been cancelled
Nix / Build (x86_64-darwin) (push) Has been cancelled
Nix / Build (x86_64-linux) (push) Has been cancelled
Nix / Build (aarch64-linux) (push) Has been cancelled
This commit is contained in:
commit
5c8b18098f
16 changed files with 64 additions and 496 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue