hyprbars: add default.nix

This commit is contained in:
nehrbash 2023-05-01 15:29:29 -04:00 committed by Mihai Fufezan
parent e80bf4a44d
commit f1e1fc439e
1 changed files with 21 additions and 0 deletions

21
hyprbars/default.nix Normal file
View File

@ -0,0 +1,21 @@
{
lib,
stdenv,
hyprland,
}:
stdenv.mkDerivation {
name = "hyprbars";
version = "0.1";
src = ./.;
inherit (hyprland) nativeBuildInputs;
buildInputs = [hyprland] ++ hyprland.buildInputs;
meta = with lib; {
homepage = "https://github.com/hyprwm/hyprland-plugins";
description = "Hyprland window title plugin";
license = licenses.bsd3;
platforms = platforms.linux;
};
}