83627f9931
GitOrigin-RevId: 2893f56de08021cffd9b6b6dfc70fd9ccd51eb60
30 lines
644 B
Nix
30 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 ];
|
|
};
|
|
}
|