From f1e1fc439e208a06593ed58813405af8cdd56645 Mon Sep 17 00:00:00 2001 From: nehrbash Date: Mon, 1 May 2023 15:29:29 -0400 Subject: [PATCH] hyprbars: add default.nix --- hyprbars/default.nix | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 hyprbars/default.nix diff --git a/hyprbars/default.nix b/hyprbars/default.nix new file mode 100644 index 0000000..e130d56 --- /dev/null +++ b/hyprbars/default.nix @@ -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; + }; +} \ No newline at end of file