hyprland-plugins/borders-plus-plus/default.nix

20 lines
403 B
Nix
Raw Permalink Normal View History

2023-04-27 00:58:01 +02:00
{
lib,
hyprland,
2024-03-07 10:29:46 +01:00
hyprlandPlugins,
2023-04-27 00:58:01 +02:00
}:
hyprlandPlugins.mkHyprlandPlugin hyprland {
2024-03-07 10:29:46 +01:00
pluginName = "borders-plus-plus";
2023-04-27 00:58:01 +02:00
version = "0.1";
src = ./.;
inherit (hyprland) nativeBuildInputs;
meta = with lib; {
homepage = "https://github.com/hyprwm/hyprland-plugins";
description = "Hyprland borders-plus-plus plugin";
license = licenses.bsd3;
platforms = platforms.linux;
};
}