diff options
author | Mihai Fufezan <[email protected]> | 2024-09-18 19:43:56 +0300 |
---|---|---|
committer | Mihai Fufezan <[email protected]> | 2024-09-18 19:43:56 +0300 |
commit | b248d59713d99a8338d25f4765fd2f564069f98b (patch) | |
tree | 1a7b9cf5c6ddcf873fc3e4b5d60c8530d458b206 | |
parent | cbc0ff6ec0670e904758069c3844b05086bb15d3 (diff) | |
download | Hyprland-b248d59713d99a8338d25f4765fd2f564069f98b.tar.gz Hyprland-b248d59713d99a8338d25f4765fd2f564069f98b.zip |
Nix: fix meson PCH flag
-rw-r--r-- | nix/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nix/default.nix b/nix/default.nix index b167a4df..11e18e6c 100644 --- a/nix/default.nix +++ b/nix/default.nix @@ -149,7 +149,7 @@ assert lib.assertMsg (!hidpiXWayland) "The option `hidpiXWayland` has been remov (lib.mesonEnable "xwayland" enableXWayland) (lib.mesonEnable "legacy_renderer" legacyRenderer) (lib.mesonEnable "systemd" withSystemd) - (lib.mesonEnable "b_pch" false) + "-Db_pch=false" ]; postInstall = '' |