mirror of
https://github.com/hyprwm/hyprland-plugins.git
synced 2024-11-02 10:15:59 +01:00
22 lines
428 B
Nix
22 lines
428 B
Nix
|
{
|
||
|
lib,
|
||
|
stdenv,
|
||
|
hyprland,
|
||
|
}:
|
||
|
stdenv.mkDerivation {
|
||
|
pname = "hyprtrails";
|
||
|
version = "0.1";
|
||
|
src = ./.;
|
||
|
|
||
|
inherit (hyprland) nativeBuildInputs;
|
||
|
|
||
|
buildInputs = [hyprland] ++ hyprland.buildInputs;
|
||
|
|
||
|
meta = with lib; {
|
||
|
homepage = "https://github.com/hyprwm/hyprland-plugins";
|
||
|
description = "Smooth trails behind moving windows for Hyprland";
|
||
|
license = licenses.bsd3;
|
||
|
platforms = platforms.linux;
|
||
|
};
|
||
|
}
|