about summary refs log tree commit diff
path: root/pkgs/games/nanosaur
diff options
context:
space:
mode:
authorBen Siraphob <bensiraphob@gmail.com>2022-03-30 16:35:38 -0500
committerBen Siraphob <bensiraphob@gmail.com>2022-03-31 12:35:21 -0500
commit4c38fcb192a471611ff205af35992451a73a7a33 (patch)
tree07f533c70963cc1b0a9b2a967bbf0cffb7e290ab /pkgs/games/nanosaur
parent9cd1fa9bcef3b578a732a391436aad804e03e3ca (diff)
treewide: move cmake into nativeBuildInputs
Diffstat (limited to 'pkgs/games/nanosaur')
-rw-r--r--pkgs/games/nanosaur/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/games/nanosaur/default.nix b/pkgs/games/nanosaur/default.nix
index d5ebee755da6a..75e47fa179b9b 100644
--- a/pkgs/games/nanosaur/default.nix
+++ b/pkgs/games/nanosaur/default.nix
@@ -12,9 +12,9 @@ stdenv.mkDerivation rec {
     fetchSubmodules = true;
   };
 
+  nativeBuildInputs = [ cmake ];
   buildInputs = [
     SDL2
-    cmake
     makeWrapper
   ];