mirror of
https://github.com/hyprwm/hyprland-plugins.git
synced 2024-11-08 12:35:59 +01:00
20 lines
387 B
Nix
20 lines
387 B
Nix
|
{
|
||
|
lib,
|
||
|
hyprland,
|
||
|
hyprlandPlugins,
|
||
|
}:
|
||
|
hyprlandPlugins.mkHyprlandPlugin {
|
||
|
pluginName = "hyprexpo";
|
||
|
version = "0.1";
|
||
|
src = ./.;
|
||
|
|
||
|
inherit (hyprland) nativeBuildInputs;
|
||
|
|
||
|
meta = with lib; {
|
||
|
homepage = "https://github.com/hyprwm/hyprland-plugins";
|
||
|
description = "Hyprland workspaces overview plugin";
|
||
|
license = licenses.bsd3;
|
||
|
platforms = platforms.linux;
|
||
|
};
|
||
|
}
|