hyprland-plugins/flake.nix

99 lines
2.8 KiB
Nix
Raw Normal View History

2023-04-27 00:58:01 +02:00
{
description = "Official Hyprland Plugins";
2023-04-27 00:58:01 +02:00
2024-03-07 10:29:46 +01:00
inputs = {
hyprland.url = "github:hyprwm/Hyprland";
nixpkgs.follows = "hyprland/nixpkgs";
2024-03-07 10:29:46 +01:00
systems.follows = "hyprland/systems";
};
outputs = {
self,
hyprland,
nixpkgs,
2024-03-07 10:29:46 +01:00
systems,
...
}: let
inherit (nixpkgs) lib;
eachSystem = lib.genAttrs (import systems);
2023-04-27 00:58:01 +02:00
2024-03-07 10:29:46 +01:00
pkgsFor = eachSystem (system:
import nixpkgs {
localSystem.system = system;
overlays = [
self.overlays.hyprland-plugins
self.overlays.gcc14Stdenv
hyprland.overlays.hyprland-packages
];
2024-03-07 10:29:46 +01:00
});
2023-04-27 00:58:01 +02:00
in {
2024-03-07 10:29:46 +01:00
packages = eachSystem (system: {
inherit
(pkgsFor.${system}.hyprlandPlugins)
borders-plus-plus
csgo-vulkan-fix
hyprbars
hyprexpo
hyprtrails
hyprwinwrap
;
2023-04-27 00:58:01 +02:00
});
2024-03-07 10:29:46 +01:00
overlays = {
default = self.overlays.hyprland-plugins;
hyprland-plugins = final: prev: let
inherit (final) callPackage;
in {
hyprlandPlugins =
(prev.hyprlandPlugins
or {})
// {
borders-plus-plus = callPackage ./borders-plus-plus {};
csgo-vulkan-fix = callPackage ./csgo-vulkan-fix {};
hyprbars = callPackage ./hyprbars {};
hyprexpo = callPackage ./hyprexpo {};
hyprtrails = callPackage ./hyprtrails {};
hyprwinwrap = callPackage ./hyprwinwrap {};
};
};
# TODO: remove when https://github.com/NixOS/nixpkgs/pull/365776 lands in master
gcc14Stdenv = final: prev: {
hyprlandPlugins =
(prev.hyprlandPlugins or {})
// {
mkHyprlandPlugin = hyprland: args @ {pluginName, ...}:
hyprland.stdenv.mkDerivation (
args
// {
pname = pluginName;
nativeBuildInputs = [prev.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-03-07 10:29:46 +01:00
};
2024-01-28 22:51:54 +01:00
2024-03-07 10:29:46 +01:00
checks = eachSystem (system: self.packages.${system});
devShells = eachSystem (system:
with pkgsFor.${system}; {
default = mkShell.override {stdenv = gcc14Stdenv;} {
2024-03-07 10:29:46 +01:00
name = "hyprland-plugins";
buildInputs = [hyprland.packages.${system}.hyprland];
inputsFrom = [hyprland.packages.${system}.hyprland];
};
});
2023-04-27 00:58:01 +02:00
};
}