summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--nix/mkAstalPkg.nix32
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