f34ce41345
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
32 lines
682 B
Nix
32 lines
682 B
Nix
{
|
|
lib,
|
|
mkHyprlandPlugin,
|
|
hyprland,
|
|
cmake,
|
|
fetchFromGitHub,
|
|
nix-update-script,
|
|
}:
|
|
|
|
mkHyprlandPlugin hyprland rec {
|
|
pluginName = "hycov";
|
|
version = "0.41.2.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "DreamMaoMao";
|
|
repo = "hycov";
|
|
rev = version;
|
|
hash = "sha256-NRnxbkuiq1rQ+uauo7D+CEe73iGqxsWxTQa+1SEPnXQ=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
meta = {
|
|
description = "Clients overview for Hyprland plugin";
|
|
homepage = "https://github.com/DreamMaoMao/hycov";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ donovanglover ];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
}
|