2024-10-21 01:39:41 -04:00
|
|
|
final: prev: {
|
2024-12-13 12:30:17 -05:00
|
|
|
# FIXME: https://pr-tracker.nelim.org/?pr=357699
|
2024-11-13 15:17:45 -05:00
|
|
|
nodejs_latest = prev.nodejs_22;
|
2024-12-17 18:14:14 -05:00
|
|
|
|
|
|
|
# FIXME: https://pr-tracker.nelim.org/?pr=365776
|
|
|
|
hyprlandPlugins =
|
|
|
|
prev.hyprlandPlugins
|
|
|
|
// {
|
|
|
|
mkHyprlandPlugin = hyprland: args @ {pluginName, ...}:
|
|
|
|
hyprland.stdenv.mkDerivation (
|
|
|
|
args
|
|
|
|
// {
|
|
|
|
pname = "${pluginName}";
|
|
|
|
nativeBuildInputs = [final.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.";
|
|
|
|
};
|
|
|
|
}
|
|
|
|
);
|
|
|
|
};
|
2024-10-21 01:39:41 -04:00
|
|
|
}
|