HyperlandOverviewPlugin/default.nix
2025-06-06 21:29:40 +00:00

20 lines
401 B
Nix

{ lib
, stdenv
, hyprland
}:
stdenv.mkDerivation {
pname = "hycov";
version = "0.2";
src = ./.;
inherit (hyprland) nativeBuildInputs;
buildInputs = [ hyprland ] ++ hyprland.buildInputs;
meta = with lib; {
homepage = "https://github.com/DreamMaoMao/hycov";
description = "clients overview for hyprland plugin";
license = licenses.mit;
platforms = platforms.linux;
};
}