{ 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 bar plugin"; license = licenses.bsd3; platforms = platforms.linux; }; }