hyprland-plugins/hyprscrolling/default.nix

20 lines
413 B
Nix
Raw Normal View History

2025-05-02 19:48:37 +01:00
{
lib,
hyprland,
hyprlandPlugins,
}:
2025-09-20 14:59:43 +02:00
hyprlandPlugins.mkHyprlandPlugin {
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; {
2025-07-20 15:47:49 +02:00
homepage = "https://github.com/hyprwm/hyprland-plugins/tree/main/hyprscrolling";
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;
};
}