about summary refs log tree commit diff
path: root/pkgs/games
diff options
context:
space:
mode:
authorBen Siraphob <bensiraphob@gmail.com>2022-03-30 20:11:06 -0500
committerBen Siraphob <bensiraphob@gmail.com>2022-03-30 20:17:24 -0500
commit21faf9fc29b10d0912411d6022751e931b1a8e54 (patch)
tree5b3de5217f3380c9fcc262eb83f3ba33e6f653eb /pkgs/games
parentf5054121cb287317c4ca8c409ef9c68f36658013 (diff)
downloadnixlib-21faf9fc29b10d0912411d6022751e931b1a8e54.tar
nixlib-21faf9fc29b10d0912411d6022751e931b1a8e54.tar.gz
nixlib-21faf9fc29b10d0912411d6022751e931b1a8e54.tar.bz2
nixlib-21faf9fc29b10d0912411d6022751e931b1a8e54.tar.lz
nixlib-21faf9fc29b10d0912411d6022751e931b1a8e54.tar.xz
nixlib-21faf9fc29b10d0912411d6022751e931b1a8e54.tar.zst
nixlib-21faf9fc29b10d0912411d6022751e931b1a8e54.zip
treewide: move autoconf, automake to nativeBuildInputs
Diffstat (limited to 'pkgs/games')
-rw-r--r--pkgs/games/garden-of-coloured-lights/default.nix3
-rw-r--r--pkgs/games/gl-117/default.nix3
-rw-r--r--pkgs/games/qqwing/default.nix3
-rw-r--r--pkgs/games/zangband/default.nix3
4 files changed, 8 insertions, 4 deletions
diff --git a/pkgs/games/garden-of-coloured-lights/default.nix b/pkgs/games/garden-of-coloured-lights/default.nix
index d38d8936c1a9..9e842acfa9a5 100644
--- a/pkgs/games/garden-of-coloured-lights/default.nix
+++ b/pkgs/games/garden-of-coloured-lights/default.nix
@@ -4,7 +4,8 @@ stdenv.mkDerivation rec {
   pname = "garden-of-coloured-lights";
   version = "1.0.9";
 
-  buildInputs = [ allegro autoconf automake ];
+  nativeBuildInputs = [ autoconf automake ];
+  buildInputs = [ allegro ];
 
   prePatch = ''
     noInline='s/inline //'
diff --git a/pkgs/games/gl-117/default.nix b/pkgs/games/gl-117/default.nix
index 0acabb4a55f3..f135c93ff04f 100644
--- a/pkgs/games/gl-117/default.nix
+++ b/pkgs/games/gl-117/default.nix
@@ -11,7 +11,8 @@ stdenv.mkDerivation rec {
     sha256 = "1yvg1rp1yijv0b45cz085b29x5x0g5fkm654xdv5qwh2l6803gb4";
   };
 
-  buildInputs = [ libGLU libGL SDL freeglut SDL_mixer autoconf automake libtool ];
+  nativeBuildInputs = [ automake autoconf ];
+  buildInputs = [ libGLU libGL SDL freeglut SDL_mixer libtool ];
 
   meta = with lib; {
     description = "An air combat simulator";
diff --git a/pkgs/games/qqwing/default.nix b/pkgs/games/qqwing/default.nix
index 3fadd73ce18e..244a826cb165 100644
--- a/pkgs/games/qqwing/default.nix
+++ b/pkgs/games/qqwing/default.nix
@@ -21,7 +21,8 @@ stdenv.mkDerivation rec {
       --replace "sudo " ""
   '';
 
-  buildInputs = [ perl autoconf automake libtool ];
+  nativeBuildInputs = [ autoconf automake ];
+  buildInputs = [ perl libtool ];
 
   makeFlags = [ "prefix=$(out)" "tgz" ];
 
diff --git a/pkgs/games/zangband/default.nix b/pkgs/games/zangband/default.nix
index e8daa9a20251..7548b082a13b 100644
--- a/pkgs/games/zangband/default.nix
+++ b/pkgs/games/zangband/default.nix
@@ -9,8 +9,9 @@ stdenv.mkDerivation rec {
     sha256 = "0kkz6f9myhjnr3308sdab8q186rd55lapvcp38w8qmakdbhc828j";
   };
 
+  nativeBuildInputs = [ autoconf automake ];
   buildInputs = [
-    ncurses flex bison autoconf automake m4
+    ncurses flex bison m4
   ];
 
   preConfigure = ''