mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 07:46:09 +01:00
Merge pull request #223908 from Scrumplex/fix-prismlauncher-gamemode
This commit is contained in:
commit
b88ebd492a
1 changed files with 7 additions and 3 deletions
|
@ -22,6 +22,8 @@
|
|||
, ghc_filesystem
|
||||
, msaClientID ? ""
|
||||
, jdks ? [ jdk17 jdk8 ]
|
||||
, gamemodeSupport ? true
|
||||
, gamemode
|
||||
}:
|
||||
|
||||
let
|
||||
|
@ -52,7 +54,9 @@ stdenv.mkDerivation rec {
|
|||
quazip
|
||||
ghc_filesystem
|
||||
tomlplusplus
|
||||
] ++ lib.optional (lib.versionAtLeast qtbase.version "6") qtwayland;
|
||||
]
|
||||
++ lib.optional (lib.versionAtLeast qtbase.version "6") qtwayland
|
||||
++ lib.optional gamemodeSupport gamemode.dev;
|
||||
|
||||
cmakeFlags = lib.optionals (msaClientID != "") [ "-DLauncher_MSA_CLIENT_ID=${msaClientID}" ]
|
||||
++ lib.optionals (lib.versionAtLeast qtbase.version "6") [ "-DLauncher_QT_VERSION_MAJOR=6" ];
|
||||
|
@ -68,7 +72,7 @@ stdenv.mkDerivation rec {
|
|||
qtWrapperArgs =
|
||||
let
|
||||
libpath = with xorg;
|
||||
lib.makeLibraryPath [
|
||||
lib.makeLibraryPath ([
|
||||
libX11
|
||||
libXext
|
||||
libXcursor
|
||||
|
@ -79,7 +83,7 @@ stdenv.mkDerivation rec {
|
|||
glfw
|
||||
openal
|
||||
stdenv.cc.cc.lib
|
||||
];
|
||||
] ++ lib.optional gamemodeSupport gamemode.lib);
|
||||
in
|
||||
[
|
||||
"--set LD_LIBRARY_PATH /run/opengl-driver/lib:${libpath}"
|
||||
|
|
Loading…
Reference in a new issue