diff options
author | matt1432 <[email protected]> | 2024-12-31 14:06:35 -0500 |
---|---|---|
committer | matt1432 <[email protected]> | 2024-12-31 14:06:35 -0500 |
commit | bd8bfcd66d53e179d963fcb1508d4bdf0382c520 (patch) | |
tree | 3502de8d321f0a2eb639033e15ebf9cdc0fa5a68 | |
parent | ce9ba0d07b44c52700fef44ea6c9cbad33c3fe44 (diff) |
fix(nix): add nativeBuildInputs param to drv
-rw-r--r-- | nix/mkAstalPkg.nix | 32 |
1 files changed, 19 insertions, 13 deletions
diff --git a/nix/mkAstalPkg.nix b/nix/mkAstalPkg.nix index 36fcf51..220c261 100644 --- a/nix/mkAstalPkg.nix +++ b/nix/mkAstalPkg.nix @@ -77,19 +77,25 @@ in inherit pname src version; outputs = ["out" "dev" "doc"]; - nativeBuildInputs = with pkgs; [ - wrapGAppsHook - gobject-introspection - meson - pkg-config - ninja - vala - wayland - wayland-scanner - python3 - ]; - - propagatedBuildInputs = [pkgs.glib] ++ packages; + nativeBuildInputs = with pkgs; + [ + wrapGAppsHook + gobject-introspection + meson + pkg-config + ninja + vala + wayland + wayland-scanner + python3 + ] + ++ nativeBuildInputs; + + propagatedBuildInputs = with pkgs; + [ + glib + ] + ++ packages; postUnpack = '' cp --remove-destination ${../lib/gir.py} $sourceRoot/gir.py |