2024-07-27 06:49:29 +00:00
|
|
|
{
|
|
|
|
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;
|
2024-09-19 14:19:46 +00:00
|
|
|
broken = true; # Doesn't work after Hyprland v0.41.2 https://gitee.com/DreamMaoMao/hycov/issues/IANYC8#note_31512295_link
|
2024-07-27 06:49:29 +00:00
|
|
|
};
|
|
|
|
}
|