From 21faf9fc29b10d0912411d6022751e931b1a8e54 Mon Sep 17 00:00:00 2001 From: Ben Siraphob Date: Wed, 30 Mar 2022 20:11:06 -0500 Subject: treewide: move autoconf, automake to nativeBuildInputs --- pkgs/games/garden-of-coloured-lights/default.nix | 3 ++- pkgs/games/gl-117/default.nix | 3 ++- pkgs/games/qqwing/default.nix | 3 ++- pkgs/games/zangband/default.nix | 3 ++- 4 files changed, 8 insertions(+), 4 deletions(-) (limited to 'pkgs/games') 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 = '' -- cgit 1.4.1