mirror of
https://github.com/hyprwm/hyprland-plugins.git
synced 2024-11-07 20:25:57 +01:00
36 lines
1.1 KiB
Nix
36 lines
1.1 KiB
Nix
{
|
|
description = "Hyprland Plugins";
|
|
|
|
inputs.hyprland.url = "github:hyprwm/Hyprland";
|
|
|
|
outputs = {
|
|
self,
|
|
hyprland,
|
|
}: let
|
|
inherit (hyprland.inputs) nixpkgs;
|
|
withPkgsFor = fn: nixpkgs.lib.genAttrs (builtins.attrNames hyprland.packages) (system: fn system nixpkgs.legacyPackages.${system});
|
|
in {
|
|
packages = withPkgsFor (system: pkgs: {
|
|
borders-plus-plus = pkgs.callPackage ./borders-plus-plus {
|
|
inherit (hyprland.packages.${system}) hyprland;
|
|
stdenv = pkgs.gcc13Stdenv;
|
|
};
|
|
csgo-vulkan-fix = pkgs.callPackage ./csgo-vulkan-fix {
|
|
inherit (hyprland.packages.${system}) hyprland;
|
|
stdenv = pkgs.gcc13Stdenv;
|
|
};
|
|
hyprbars = pkgs.callPackage ./hyprbars {
|
|
inherit (hyprland.packages.${system}) hyprland;
|
|
stdenv = pkgs.gcc13Stdenv;
|
|
};
|
|
});
|
|
|
|
devShells = withPkgsFor (system: pkgs: {
|
|
default = pkgs.mkShell.override {stdenv = pkgs.gcc13Stdenv;} {
|
|
name = "hyprland-plugins";
|
|
buildInputs = [hyprland.packages.${system}.hyprland];
|
|
inputsFrom = [hyprland.packages.${system}.hyprland];
|
|
};
|
|
});
|
|
};
|
|
}
|