diff options
author | Mustafa Çalışkan <muscaln@protonmail.com> | 2022-05-29 17:07:12 +0300 |
---|---|---|
committer | Mustafa Çalışkan <muscaln@protonmail.com> | 2022-05-29 17:07:12 +0300 |
commit | ee00a5d8eef6c9239d7701554d065c0f5f8767c3 (patch) | |
tree | 675ae9f6704799c7df779bfc19dbc276ba5a1a8a /nix/default.nix | |
parent | 65d23fc9b97fa8c3eccacf284fa721fe1dabdc09 (diff) | |
download | PrismLauncher-ee00a5d8eef6c9239d7701554d065c0f5f8767c3.tar.gz PrismLauncher-ee00a5d8eef6c9239d7701554d065c0f5f8767c3.tar.bz2 PrismLauncher-ee00a5d8eef6c9239d7701554d065c0f5f8767c3.zip |
nix: make LTO optional
Diffstat (limited to 'nix/default.nix')
-rw-r--r-- | nix/default.nix | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/nix/default.nix b/nix/default.nix index cce40e63..969b455e 100644 --- a/nix/default.nix +++ b/nix/default.nix @@ -11,6 +11,7 @@ , xorg , libpulseaudio , qtbase +, quazip , libGL , msaClientID ? "" @@ -18,6 +19,7 @@ , self , version , libnbtplusplus +, enableLTO ? false }: let @@ -57,9 +59,9 @@ stdenv.mkDerivation rec { cmakeFlags = [ "-GNinja" - "-DENABLE_LTO=on" "-DLauncher_QT_VERSION_MAJOR=${lib.versions.major qtbase.version}" - ] ++ lib.optionals (msaClientID != "") [ "-DLauncher_MSA_CLIENT_ID=${msaClientID}" ]; + ] ++ lib.optionals enableLTO [ "-DENABLE_LTO=on" ] + ++ lib.optionals (msaClientID != "") [ "-DLauncher_MSA_CLIENT_ID=${msaClientID}" ]; postInstall = '' # xorg.xrandr needed for LWJGL [2.9.2, 3) https://github.com/LWJGL/lwjgl/issues/128 |