hyprland-plugins/hyprscrolling/default.nix
Mihai Fufezan 6904c6dac5
Some checks are pending
Nix / build (push) Waiting to run
hyprscrolling: fix nix
2025-05-02 21:53:59 +03:00

19 lines
398 B
Nix

{
lib,
hyprland,
hyprlandPlugins,
}:
hyprlandPlugins.mkHyprlandPlugin hyprland {
pluginName = "hyprscrolling";
version = "0.1";
src = ./.;
inherit (hyprland) nativeBuildInputs;
meta = with lib; {
homepage = "https://github.com/hyprwm/hyprland-plugins";
description = "Hyprland scrolling layout plugin";
license = licenses.bsd3;
platforms = platforms.linux;
};
}