summary refs log tree commit diff
path: root/pkgs/games/pingus
diff options
context:
space:
mode:
authorFrank Doepper <woffs@woffs.de>2020-04-10 23:41:46 +0200
committerMatthieu Coudron <mattator@gmail.com>2020-04-11 05:14:49 +0200
commit0af01aa8d1f5be260c125d2568768ff86c088995 (patch)
tree8d0549639bc411f910aac4b632d1f75214803118 /pkgs/games/pingus
parent156ee198b2e39a2f1bf692fca2d0f54d021b89d2 (diff)
downloadnixpkgs-0af01aa8d1f5be260c125d2568768ff86c088995.tar
nixpkgs-0af01aa8d1f5be260c125d2568768ff86c088995.tar.gz
nixpkgs-0af01aa8d1f5be260c125d2568768ff86c088995.tar.bz2
nixpkgs-0af01aa8d1f5be260c125d2568768ff86c088995.tar.lz
nixpkgs-0af01aa8d1f5be260c125d2568768ff86c088995.tar.xz
nixpkgs-0af01aa8d1f5be260c125d2568768ff86c088995.tar.zst
nixpkgs-0af01aa8d1f5be260c125d2568768ff86c088995.zip
pingus: move cmake to nativeBuildInputs
Diffstat (limited to 'pkgs/games/pingus')
-rw-r--r--pkgs/games/pingus/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/games/pingus/default.nix b/pkgs/games/pingus/default.nix
index e96e1a6a6e0..6ffc38f6700 100644
--- a/pkgs/games/pingus/default.nix
+++ b/pkgs/games/pingus/default.nix
@@ -4,8 +4,8 @@ stdenv.mkDerivation rec {
   pname = "pingus";
   version = "unstable-0.7.6.0.20191104";
 
-  nativeBuildInputs = [ pkgconfig git ];
-  buildInputs = [ cmake SDL2 SDL2_image boost libpng SDL2_mixer libGLU libGL jsoncpp ];
+  nativeBuildInputs = [ cmake pkgconfig git ];
+  buildInputs = [ SDL2 SDL2_image boost libpng SDL2_mixer libGLU libGL jsoncpp ];
   src = fetchgit {
     url = "https://gitlab.com/pingus/pingus/";
     rev = "709546d9b9c4d6d5f45fc9112b45ac10c7f9417d";