diff options
author | Vaxry <[email protected]> | 2023-12-07 10:41:09 +0000 |
---|---|---|
committer | GitHub <[email protected]> | 2023-12-07 10:41:09 +0000 |
commit | d36055054651442db19df046cbdd0697b805c541 (patch) | |
tree | d66ec48c6a47cd2b331fe133dc43d57e6d1ec376 /nix | |
parent | 62a8d0be5c1959ade8410f8f964e362288f22175 (diff) | |
download | Hyprland-d36055054651442db19df046cbdd0697b805c541.tar.gz Hyprland-d36055054651442db19df046cbdd0697b805c541.zip |
hyprpm: Add hyprpm, a Hyprland Plugin Manager (#4072)
Diffstat (limited to 'nix')
-rw-r--r-- | nix/default.nix | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/nix/default.nix b/nix/default.nix index 7ddeae94..68b1bb22 100644 --- a/nix/default.nix +++ b/nix/default.nix @@ -20,6 +20,7 @@ pango, pciutils, systemd, + tomlplusplus, udis86, wayland, wayland-protocols, @@ -81,19 +82,20 @@ assert lib.assertMsg (!hidpiXWayland) "The option `hidpiXWayland` has been remov buildInputs = [ - git cairo + git hyprland-protocols - libGL libdrm_2_4_118 + libGL libinput libxkbcommon mesa pango + pciutils + tomlplusplus udis86 wayland wayland-protocols - pciutils wlroots ] ++ lib.optionals enableXWayland [libxcb xcbutilwm xwayland] |