mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-02 19:05:58 +01:00
small fix for nativebuildinputs
This commit is contained in:
parent
7c6fc3c6ad
commit
dc6702ea58
1 changed files with 2 additions and 1 deletions
|
@ -7,7 +7,8 @@ stdenv.mkDerivation rec {
|
||||||
version = "git";
|
version = "git";
|
||||||
inherit src;
|
inherit src;
|
||||||
|
|
||||||
nativeBuildInputs = [ cmake ninja pkg-config wayland xwayland ];
|
nativeBuildInputs = [ cmake ninja pkg-config wayland ]
|
||||||
|
++ lib.optional enableXWayland xwayland;
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
libdrm
|
libdrm
|
||||||
|
|
Loading…
Reference in a new issue