mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-22 20:05:58 +01:00
Nix: don't strip in debug builds
Strip in Release builds, as the non-stripped binary is almost 500MB.
This commit is contained in:
parent
9cb3bf1cac
commit
14ab0ecc5e
1 changed files with 1 additions and 1 deletions
|
@ -152,7 +152,7 @@ assert lib.assertMsg (!hidpiXWayland) "The option `hidpiXWayland` has been remov
|
||||||
else "RelWithDebInfo";
|
else "RelWithDebInfo";
|
||||||
|
|
||||||
# we want as much debug info as possible
|
# we want as much debug info as possible
|
||||||
dontStrip = true;
|
dontStrip = debug;
|
||||||
|
|
||||||
cmakeFlags = [
|
cmakeFlags = [
|
||||||
(lib.cmakeBool "NO_XWAYLAND" (!enableXWayland))
|
(lib.cmakeBool "NO_XWAYLAND" (!enableXWayland))
|
||||||
|
|
Loading…
Reference in a new issue