2021-01-17 05:49:22 +00:00
|
|
|
{ lib, stdenv, fetchurl, cmake, pkg-config, 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 01:17:29 +01:00
|
|
|
}:
|
2010-05-17 10:21:42 +01:00
|
|
|
|
2015-05-28 16:22:56 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "supertux";
|
2020-05-24 13:34:37 +01:00
|
|
|
version = "0.6.2";
|
2010-05-17 10:21:42 +01:00
|
|
|
|
2015-12-29 23:40:43 +00:00
|
|
|
src = fetchurl {
|
2016-09-30 01:17:29 +01:00
|
|
|
url = "https://github.com/SuperTux/supertux/releases/download/v${version}/SuperTux-v${version}-Source.tar.gz";
|
2020-05-24 13:34:37 +01:00
|
|
|
sha256 = "167m3z4m8n76dvbv42m1fnvabpbpsxvr28zk9641916jl9pfba96";
|
2010-05-17 10:21:42 +01:00
|
|
|
};
|
|
|
|
|
2021-01-17 05:49:22 +00:00
|
|
|
nativeBuildInputs = [ pkg-config cmake ];
|
2016-09-30 01:17:29 +01:00
|
|
|
|
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 01:17:29 +01:00
|
|
|
|
|
|
|
cmakeFlags = [ "-DENABLE_BOOST_STATIC_LIBS=OFF" ];
|
2010-05-17 10:21:42 +01:00
|
|
|
|
2015-05-28 16:22:56 +01:00
|
|
|
postInstall = ''
|
|
|
|
mkdir $out/bin
|
|
|
|
ln -s $out/games/supertux2 $out/bin
|
|
|
|
'';
|
2010-05-17 10:21:42 +01:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2015-05-28 16:22:56 +01:00
|
|
|
description = "Classic 2D jump'n run sidescroller game";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://supertux.github.io/";
|
2015-05-28 16:22:56 +01:00
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = with maintainers; [ pSub ];
|
2016-08-02 18:50:55 +01:00
|
|
|
platforms = with platforms; linux;
|
2010-05-17 10:21:42 +01:00
|
|
|
};
|
|
|
|
}
|