hyprfocus: add default.nix

This commit is contained in:
codyhahn 2025-06-19 13:49:54 -04:00 committed by Mihai Fufezan
parent 39c2832102
commit a65f46c564

19
hyprfocus/default.nix Normal file
View File

@ -0,0 +1,19 @@
{
lib,
hyprland,
hyprlandPlugins,
}:
hyprlandPlugins.mkHyprlandPlugin hyprland {
pluginName = "hyprfocus";
version = "0.1";
src = ./.;
inherit (hyprland) nativeBuildInputs;
meta = with lib; {
homepage = "https://github.com/hyprwm/hyprland-plugins";
description = "Hyprland flashfocus plugin";
license = licenses.bsd3;
platforms = platforms.linux;
};
}