mirror of
https://github.com/hyprwm/hyprland-plugins.git
synced 2024-12-22 15:09:47 +01:00
20 lines
402 B
Nix
20 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;
|
||
|
};
|
||
|
}
|