mirror of
https://github.com/donovanglover/nix-config.git
synced 2025-06-04 08:56:01 +02:00
packages: Add hycov (again)
Might be able to upstream hycov into nixpkgs now that plugin support exists.
This commit is contained in:
parent
c9b79ccfb2
commit
19fd97003c
29
packages/hycov.nix
Normal file
29
packages/hycov.nix
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
{ 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;
|
||||||
|
};
|
||||||
|
})
|
Loading…
x
Reference in New Issue
Block a user