mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 23:43:30 +00:00
xwayland: enable libunwind
This commit is contained in:
parent
3865c1767b
commit
c73f3cf927
@ -95,11 +95,12 @@ stdenv.mkDerivation rec {
|
|||||||
zlib
|
zlib
|
||||||
];
|
];
|
||||||
mesonFlags = [
|
mesonFlags = [
|
||||||
"-Dxwayland_eglstream=true"
|
(lib.mesonBool "xwayland_eglstream" true)
|
||||||
"-Ddefault_font_path=${defaultFontPath}"
|
(lib.mesonOption "default_font_path" defaultFontPath)
|
||||||
"-Dxkb_bin_dir=${xkbcomp}/bin"
|
(lib.mesonOption "xkb_bin_dir" "${xkbcomp}/bin")
|
||||||
"-Dxkb_dir=${xkeyboard_config}/etc/X11/xkb"
|
(lib.mesonOption "xkb_dir" "${xkeyboard_config}/etc/X11/xkb")
|
||||||
"-Dxkb_output_dir=${placeholder "out"}/share/X11/xkb/compiled"
|
(lib.mesonOption "xkb_output_dir" "${placeholder "out"}/share/X11/xkb/compiled")
|
||||||
|
(lib.mesonBool "libunwind" (libunwind != null))
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
Loading…
Reference in New Issue
Block a user