mirror of
https://github.com/hyprwm/hyprland-plugins.git
synced 2025-12-24 08:50:03 +01:00
17 lines
340 B
Nix
17 lines
340 B
Nix
hyprland: stdenv: {
|
|
pname,
|
|
version ? "dirty",
|
|
src,
|
|
buildInputs ? [],
|
|
meta ? {},
|
|
}: let
|
|
hl = hyprland.packages.${stdenv.hostPlatform.system}.default;
|
|
in
|
|
stdenv.mkDerivation {
|
|
inherit pname version src;
|
|
|
|
inherit (hl) nativeBuildInputs;
|
|
buildInputs = hl.buildInputs ++ [hl.dev] ++ buildInputs;
|
|
|
|
inherit meta;
|
|
}
|