forked from mirrors/nixpkgs
Merge pull request #188056 from McSinyx/supertux
This commit is contained in:
commit
4f57c57acf
|
@ -1,6 +1,23 @@
|
|||
{ lib, stdenv, fetchurl, cmake, pkg-config, SDL2, SDL2_image , curl
|
||||
, libogg, libvorbis, libGLU, libGL, openal, boost, glew
|
||||
, libpng, freetype, glm
|
||||
{ lib
|
||||
, stdenv
|
||||
, fetchurl
|
||||
, cmake
|
||||
, pkg-config
|
||||
, boost
|
||||
, curl
|
||||
, SDL2
|
||||
, SDL2_image
|
||||
, libSM
|
||||
, libXext
|
||||
, libpng
|
||||
, freetype
|
||||
, libGLU
|
||||
, libGL
|
||||
, glew
|
||||
, glm
|
||||
, openal
|
||||
, libogg
|
||||
, libvorbis
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
|
@ -14,8 +31,22 @@ stdenv.mkDerivation rec {
|
|||
|
||||
nativeBuildInputs = [ pkg-config cmake ];
|
||||
|
||||
buildInputs = [ SDL2 SDL2_image curl libogg libvorbis libGLU libGL openal boost glew
|
||||
libpng freetype glm
|
||||
buildInputs = [
|
||||
boost
|
||||
curl
|
||||
SDL2
|
||||
SDL2_image
|
||||
libSM
|
||||
libXext
|
||||
libpng
|
||||
freetype
|
||||
libGL
|
||||
libGLU
|
||||
glew
|
||||
glm
|
||||
openal
|
||||
libogg
|
||||
libvorbis
|
||||
];
|
||||
|
||||
cmakeFlags = [ "-DENABLE_BOOST_STATIC_LIBS=OFF" ];
|
||||
|
|
Loading…
Reference in a new issue