Skip to content

Commit

Permalink
Merge pull request #325386 from donovanglover/hycov
Browse files Browse the repository at this point in the history
hyprlandPlugins.hycov: init at 0.41.2.1
  • Loading branch information
JohnRTitor authored Jul 10, 2024
2 parents 279c439 + 30d01ce commit ae631b1
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ let

plugins = lib.mergeAttrsList [
{ hy3 = import ./hy3.nix; }
{ hycov = import ./hycov.nix; }
{ hypr-dynamic-cursors = import ./hypr-dynamic-cursors.nix; }
{ hyprfocus = import ./hyprfocus.nix; }
{ hyprscroller = import ./hyprscroller.nix; }
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
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;
};
}

0 comments on commit ae631b1

Please sign in to comment.