31 lines
644 B
Nix
31 lines
644 B
Nix
|
{
|
||
|
lib,
|
||
|
cmake,
|
||
|
fetchFromGitHub,
|
||
|
hyprland,
|
||
|
mkHyprlandPlugin,
|
||
|
}:
|
||
|
mkHyprlandPlugin hyprland rec {
|
||
|
pluginName = "hy3";
|
||
|
version = "0.41.1";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "outfoxxed";
|
||
|
repo = "hy3";
|
||
|
rev = "hl${version}";
|
||
|
hash = "sha256-bRLI+zgfT31LCMW4Pf701ZZx2oFeXoBu1BfYQjX6MPc=";
|
||
|
};
|
||
|
|
||
|
nativeBuildInputs = [ cmake ];
|
||
|
|
||
|
dontStrip = true;
|
||
|
|
||
|
meta = {
|
||
|
homepage = "https://github.com/outfoxxed/hy3";
|
||
|
description = "Hyprland plugin for an i3 / sway like manual tiling layout";
|
||
|
license = lib.licenses.gpl3;
|
||
|
platforms = lib.platforms.linux;
|
||
|
maintainers = with lib.maintainers; [ aacebedo ];
|
||
|
};
|
||
|
}
|