hyprland-plugins/hyprscrolling/default.nix

20 lines
398 B
Nix
Raw Normal View History

2025-05-02 19:48:37 +01:00
{
lib,
hyprland,
hyprlandPlugins,
}:
hyprlandPlugins.mkHyprlandPlugin hyprland {
2025-05-02 21:53:49 +03:00
pluginName = "hyprscrolling";
2025-05-02 19:48:37 +01:00
version = "0.1";
src = ./.;
inherit (hyprland) nativeBuildInputs;
meta = with lib; {
homepage = "https://github.com/hyprwm/hyprland-plugins";
2025-05-02 21:53:49 +03:00
description = "Hyprland scrolling layout plugin";
2025-05-02 19:48:37 +01:00
license = licenses.bsd3;
platforms = platforms.linux;
};
}