hyprland-plugins/xtra-dispatchers/default.nix

20 lines
402 B
Nix
Raw Normal View History

2024-12-21 21:45:23 +01:00
{
lib,
hyprland,
hyprlandPlugins,
}:
hyprlandPlugins.mkHyprlandPlugin hyprland {
pluginName = "xtra-dispatchers";
version = "0.1";
src = ./.;
inherit (hyprland) nativeBuildInputs;
meta = with lib; {
homepage = "https://github.com/hyprwm/hyprland-plugins";
description = "Hyprland extra dispatchers plugin";
license = licenses.bsd3;
platforms = platforms.linux;
};
}