about summary refs log tree commit diff
path: root/pkgs/games/qqwing
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/qqwing
parentf5054121cb287317c4ca8c409ef9c68f36658013 (diff)
treewide: move autoconf, automake to nativeBuildInputs
Diffstat (limited to 'pkgs/games/qqwing')
-rw-r--r--pkgs/games/qqwing/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/games/qqwing/default.nix b/pkgs/games/qqwing/default.nix
index 3fadd73ce18e5..244a826cb1656 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" ];