hyprland-plugins/hyprtrails/default.nix

20 lines
411 B
Nix

{
lib,
hyprland,
hyprlandPlugins,
}:
hyprlandPlugins.mkHyprlandPlugin hyprland {
pluginName = "hyprtrails";
version = "0.1";
src = ./.;
inherit (hyprland) nativeBuildInputs;
meta = with lib; {
homepage = "https://github.com/hyprwm/hyprland-plugins";
description = "Smooth trails behind moving windows for Hyprland";
license = licenses.bsd3;
platforms = platforms.linux;
};
}