hyprland-plugins/hyprscrolling/default.nix
2025-05-02 19:48:37 +01:00

19 lines
402 B
Nix

{
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;
};
}