summary refs log tree commit diff
path: root/pkgs/applications/graphics/synfigstudio
diff options
context:
space:
mode:
authorJohn Ericson <John.Ericson@Obsidian.Systems>2017-09-18 22:23:00 -0400
committerJohn Ericson <John.Ericson@Obsidian.Systems>2017-09-21 15:49:53 -0400
commit1e73b71e0309a033c373b322cc23b5776d76f7eb (patch)
tree6a7c7e0e0866a6687631b7fec7847cdbaf1e8ece /pkgs/applications/graphics/synfigstudio
parentb9bf90ca6c7d980c9ff34d67fb3950c47b6be6b8 (diff)
downloadnixpkgs-1e73b71e0309a033c373b322cc23b5776d76f7eb.tar
nixpkgs-1e73b71e0309a033c373b322cc23b5776d76f7eb.tar.gz
nixpkgs-1e73b71e0309a033c373b322cc23b5776d76f7eb.tar.bz2
nixpkgs-1e73b71e0309a033c373b322cc23b5776d76f7eb.tar.lz
nixpkgs-1e73b71e0309a033c373b322cc23b5776d76f7eb.tar.xz
nixpkgs-1e73b71e0309a033c373b322cc23b5776d76f7eb.tar.zst
nixpkgs-1e73b71e0309a033c373b322cc23b5776d76f7eb.zip
synfig: Make pkg-config, autoreconfHook, and gettext nativeBuildInputs
Diffstat (limited to 'pkgs/applications/graphics/synfigstudio')
-rw-r--r--pkgs/applications/graphics/synfigstudio/default.nix13
1 files changed, 7 insertions, 6 deletions
diff --git a/pkgs/applications/graphics/synfigstudio/default.nix b/pkgs/applications/graphics/synfigstudio/default.nix
index ea0d2338252..9bb942d05f5 100644
--- a/pkgs/applications/graphics/synfigstudio/default.nix
+++ b/pkgs/applications/graphics/synfigstudio/default.nix
@@ -18,7 +18,7 @@ let
 
     postUnpack = "sourceRoot=\${sourceRoot}/ETL/";
 
-    buildInputs = [ autoreconfHook ];
+    nativeBuildInputs = [ autoreconfHook ];
   };
 
   synfig = stdenv.mkDerivation rec {
@@ -38,9 +38,9 @@ let
       "--with-boost-libdir=${boost.out}/lib"
     ];
 
+    nativeBuildInputs = [ pkgconfig autoreconfHook gettext ];
     buildInputs = [
-      ETL boost cairo gettext glibmm mlt-qt5 libsigcxx libxmlxx pango
-      pkgconfig autoreconfHook
+      ETL boost cairo glibmm mlt-qt5 libsigcxx libxmlxx pango
     ];
   };
 in
@@ -99,10 +99,11 @@ stdenv.mkDerivation rec {
 
   preConfigure = "./bootstrap.sh";
 
+  nativeBuildInputs = [ pkgconfig autoreconfHook gettext ];
   buildInputs = [
-    ETL boost cairo gettext glibmm gtk3 gtkmm3 imagemagick intltool
-    libjack2 libsigcxx libxmlxx makeWrapper mlt-qt5 pkgconfig
-    synfig autoreconfHook which defaultIconTheme
+    ETL boost cairo glibmm gtk3 gtkmm3 imagemagick intltool
+    libjack2 libsigcxx libxmlxx makeWrapper mlt-qt5
+    synfig which defaultIconTheme
   ];
 
   postInstall = ''