2016-09-30 00:17:29 +00:00
|
|
|
{ stdenv, fetchurl, cmake, pkgconfig, SDL2, SDL2_image , curl
|
2019-11-10 16:44:34 +00:00
|
|
|
, libogg, libvorbis, libGLU, libGL, openal, boost, glew
|
2019-02-07 20:24:59 +00:00
|
|
|
, libpng, freetype
|
2016-09-30 00:17:29 +00:00
|
|
|
}:
|
2010-05-17 09:21:42 +00:00
|
|
|
|
2015-05-28 15:22:56 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "supertux";
|
2019-02-07 20:24:59 +00:00
|
|
|
version = "0.6.0";
|
2010-05-17 09:21:42 +00:00
|
|
|
|
2015-12-29 23:40:43 +00:00
|
|
|
src = fetchurl {
|
2016-09-30 00:17:29 +00:00
|
|
|
url = "https://github.com/SuperTux/supertux/releases/download/v${version}/SuperTux-v${version}-Source.tar.gz";
|
2019-02-07 20:24:59 +00:00
|
|
|
sha256 = "1h1s4abirkdv4ag22zvyk6zkk64skqbjmcnnba67ps4hdzxfbhy4";
|
2010-05-17 09:21:42 +00:00
|
|
|
};
|
|
|
|
|
2016-09-30 00:17:29 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig cmake ];
|
|
|
|
|
2019-11-10 16:44:34 +00:00
|
|
|
buildInputs = [ SDL2 SDL2_image curl libogg libvorbis libGLU libGL openal boost glew
|
2019-02-07 20:24:59 +00:00
|
|
|
libpng freetype
|
|
|
|
];
|
2016-09-30 00:17:29 +00:00
|
|
|
|
|
|
|
cmakeFlags = [ "-DENABLE_BOOST_STATIC_LIBS=OFF" ];
|
2010-05-17 09:21:42 +00:00
|
|
|
|
2015-05-28 15:22:56 +00:00
|
|
|
postInstall = ''
|
|
|
|
mkdir $out/bin
|
|
|
|
ln -s $out/games/supertux2 $out/bin
|
|
|
|
'';
|
2010-05-17 09:21:42 +00:00
|
|
|
|
2015-05-28 15:22:56 +00:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Classic 2D jump'n run sidescroller game";
|
|
|
|
homepage = http://supertux.github.io/;
|
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = with maintainers; [ pSub ];
|
2016-08-02 17:50:55 +00:00
|
|
|
platforms = with platforms; linux;
|
2010-05-17 09:21:42 +00:00
|
|
|
};
|
|
|
|
}
|