mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-22 08:14:00 +01:00
19fd97003c
Might be able to upstream hycov into nixpkgs now that plugin support exists.
30 lines
658 B
Nix
30 lines
658 B
Nix
{ lib
|
|
, stdenv
|
|
, hyprland
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "hycov";
|
|
version = "0.41.2.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "DreamMaoMao";
|
|
repo = "hycov";
|
|
rev = finalAttrs.version;
|
|
hash = "sha256-NRnxbkuiq1rQ+uauo7D+CEe73iGqxsWxTQa+1SEPnXQ=";
|
|
};
|
|
|
|
inherit (hyprland) nativeBuildInputs;
|
|
|
|
buildInputs = [ hyprland ] ++ hyprland.buildInputs;
|
|
|
|
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;
|
|
};
|
|
})
|