mirror of
https://github.com/marcoallegretti/WEFT_OS.git
synced 2026-03-26 17:03:09 +00:00
build(nix): add libinput to compositor inputs; set NIX_LDFLAGS for mesa/gbm and libinput
This commit is contained in:
parent
6c3994888d
commit
c695b420be
1 changed files with 4 additions and 1 deletions
|
|
@ -36,9 +36,12 @@ in {
|
|||
weft-compositor = mkWeftPkg {
|
||||
pname = "weft-compositor";
|
||||
extraBuildInputs = with pkgs; [
|
||||
libdrm mesa wayland libxkbcommon seatd udev dbus libGL libdisplay-info
|
||||
libdrm mesa wayland libxkbcommon seatd udev dbus libGL libdisplay-info libinput
|
||||
];
|
||||
extraNativeBuildInputs = with pkgs; [ wayland-scanner ];
|
||||
extraEnv = {
|
||||
NIX_LDFLAGS = "-L${pkgs.mesa}/lib -L${pkgs.libinput}/lib";
|
||||
};
|
||||
};
|
||||
|
||||
weft-servo-shell = mkWeftPkg {
|
||||
|
|
|
|||
Loading…
Reference in a new issue