hyprland-plugins/hyprbars/default.nix

22 lines
403 B
Nix
Raw Normal View History

2023-03-29 09:57:23 +02:00
{
2023-04-18 20:00:31 +02:00
lib,
2023-03-29 09:57:23 +02:00
stdenv,
hyprland,
}:
stdenv.mkDerivation {
name = "hyprbars";
2023-04-18 20:00:31 +02:00
version = "0.1";
2023-03-29 09:57:23 +02:00
src = ./.;
2023-04-18 20:00:31 +02:00
inherit (hyprland) nativeBuildInputs;
2023-03-29 09:57:23 +02:00
2023-04-18 20:00:31 +02:00
buildInputs = [hyprland] ++ hyprland.buildInputs;
2023-03-29 09:57:23 +02:00
2023-04-18 20:00:31 +02:00
meta = with lib; {
homepage = "https://github.com/hyprwm/hyprland-plugins";
description = "Hyprland window bar plugin";
license = licenses.bsd3;
platforms = platforms.linux;
};
2023-03-29 09:57:23 +02:00
}