hyprland-plugins/hyprtrails/default.nix

20 lines
411 B
Nix
Raw Permalink Normal View History

2023-11-06 12:16:01 +01:00
{
lib,
hyprland,
2024-03-07 10:29:46 +01:00
hyprlandPlugins,
2023-11-06 12:16:01 +01:00
}:
hyprlandPlugins.mkHyprlandPlugin hyprland {
2024-03-07 10:29:46 +01:00
pluginName = "hyprtrails";
2023-11-06 12:16:01 +01:00
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;
};
}