2024-06-24 18:47:55 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
cmake,
|
|
|
|
fetchFromGitHub,
|
|
|
|
hyprland,
|
|
|
|
mkHyprlandPlugin,
|
|
|
|
}:
|
|
|
|
mkHyprlandPlugin hyprland rec {
|
|
|
|
pluginName = "hy3";
|
2024-09-19 14:19:46 +00:00
|
|
|
version = "0.43.0";
|
2024-06-24 18:47:55 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "outfoxxed";
|
|
|
|
repo = "hy3";
|
2024-07-01 15:47:52 +00:00
|
|
|
rev = "refs/tags/hl${version}";
|
2024-09-19 14:19:46 +00:00
|
|
|
hash = "sha256-hBvwaMlgBuR2cB1Kx6cA1z7x38HXUujNcHtBsKhaEZs=";
|
2024-06-24 18:47:55 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
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;
|
2024-09-19 14:19:46 +00:00
|
|
|
inherit (hyprland.meta) platforms;
|
2024-07-01 15:47:52 +00:00
|
|
|
maintainers = with lib.maintainers; [
|
|
|
|
aacebedo
|
|
|
|
johnrtitor
|
|
|
|
];
|
2024-06-24 18:47:55 +00:00
|
|
|
};
|
|
|
|
}
|