hyprland-plugins/borders-plus-plus/default.nix

22 lines
420 B
Nix
Raw Normal View History

2023-04-27 00:58:01 +02:00
{
lib,
stdenv,
hyprland,
}:
stdenv.mkDerivation {
pname = "borders-plus-plus";
2023-04-27 00:58:01 +02:00
version = "0.1";
src = ./.;
inherit (hyprland) nativeBuildInputs;
buildInputs = [hyprland] ++ hyprland.buildInputs;
meta = with lib; {
homepage = "https://github.com/hyprwm/hyprland-plugins";
description = "Hyprland borders-plus-plus plugin";
license = licenses.bsd3;
platforms = platforms.linux;
};
}