biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / window-managers / hyprwm / hyprland-plugins / hy3.nix
blobeaa86ba62475d23ed999fff2a148ae119e39c7b3
2   lib,
3   cmake,
4   fetchFromGitHub,
5   hyprland,
6   mkHyprlandPlugin,
7 }:
8 mkHyprlandPlugin hyprland rec {
9   pluginName = "hy3";
10   version = "0.44.0";
12   src = fetchFromGitHub {
13     owner = "outfoxxed";
14     repo = "hy3";
15     rev = "refs/tags/hl${version}";
16     hash = "sha256-6TVaB+nWVanqZWqievg+m7tVNrSpQ9CQcwXJQeyU/Q0=";
17   };
19   nativeBuildInputs = [ cmake ];
21   dontStrip = true;
23   meta = {
24     homepage = "https://github.com/outfoxxed/hy3";
25     description = "Hyprland plugin for an i3 / sway like manual tiling layout";
26     license = lib.licenses.gpl3;
27     inherit (hyprland.meta) platforms;
28     maintainers = with lib.maintainers; [
29       aacebedo
30       johnrtitor
31     ];
32   };