about summary refs log tree commit diff
path: root/pkgs/games/zod
diff options
context:
space:
mode:
authorBen Siraphob <bensiraphob@gmail.com>2021-02-20 21:01:53 +0000
committerGitHub <noreply@github.com>2021-02-20 16:01:53 -0500
commit127733211e03cb0763246a2ebc0c99e2a438a6ce (patch)
treeaa9601b7da78a16d08e713e4d5e01ffe39dfd8b2 /pkgs/games/zod
parentce5052e93174070b3648e02bd3c787668331e9b5 (diff)
treewide: unzip buildInputs to nativeBuildInputs (#112302)
Diffstat (limited to 'pkgs/games/zod')
-rw-r--r--pkgs/games/zod/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/games/zod/default.nix b/pkgs/games/zod/default.nix
index 6c48caf8756aa..c358e599924ac 100644
--- a/pkgs/games/zod/default.nix
+++ b/pkgs/games/zod/default.nix
@@ -24,8 +24,8 @@ stdenv.mkDerivation {
     sourceRoot=`pwd`/src
   '';
 
-  nativeBuildInputs = [ makeWrapper ];
-  buildInputs = [ unrar unzip SDL SDL_image SDL_ttf SDL_mixer libmysqlclient ];
+  nativeBuildInputs = [ makeWrapper unrar unzip ];
+  buildInputs = [ SDL SDL_image SDL_ttf SDL_mixer libmysqlclient ];
 
   NIX_LDFLAGS = "-L${libmysqlclient}/lib/mysql";