3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #188056 from McSinyx/supertux

This commit is contained in:
Sandro 2022-09-04 02:08:48 +02:00 committed by GitHub
commit 4f57c57acf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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" ];