5c370c0b2a
GitOrigin-RevId: 33d1e753c82ffc557b4a585c77de43d4c922ebb5
50 lines
1.4 KiB
Nix
50 lines
1.4 KiB
Nix
{ lib
|
|
, callPackage
|
|
, pkg-config
|
|
, stdenv
|
|
, hyprland
|
|
}:
|
|
let
|
|
mkHyprlandPlugin = hyprland:
|
|
args@{ pluginName, ... }:
|
|
stdenv.mkDerivation (args // {
|
|
pname = "${pluginName}";
|
|
nativeBuildInputs = [ pkg-config ] ++ args.nativeBuildInputs or [ ];
|
|
buildInputs = [ hyprland ]
|
|
++ hyprland.buildInputs
|
|
++ (args.buildInputs or [ ]);
|
|
meta = args.meta // {
|
|
description = args.meta.description or "";
|
|
longDescription = (args.meta.longDescription or "") +
|
|
"\n\nPlugins can be installed via a plugin entry in the Hyprland NixOS or Home Manager options.";
|
|
};
|
|
});
|
|
|
|
plugins = {
|
|
hy3 = { fetchFromGitHub, cmake, hyprland }:
|
|
mkHyprlandPlugin hyprland {
|
|
pluginName = "hy3";
|
|
version = "0.39.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "outfoxxed";
|
|
repo = "hy3";
|
|
rev = "hl0.39.1";
|
|
hash = "sha256-PqVld+oFziSt7VZTNBomPyboaMEAIkerPQFwNJL/Wjw=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
dontStrip = true;
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/outfoxxed/hy3";
|
|
description = "Hyprland plugin for an i3 / sway like manual tiling layout";
|
|
license = licenses.gpl3;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.aacebedo ];
|
|
};
|
|
};
|
|
};
|
|
in
|
|
(lib.mapAttrs (name: plugin: callPackage plugin { }) plugins) // { inherit mkHyprlandPlugin; }
|