2022-08-23 19:51:40 +03:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchurl
|
|
|
|
, cmake
|
|
|
|
, pkg-config
|
|
|
|
, boost
|
|
|
|
, curl
|
|
|
|
, SDL2
|
|
|
|
, SDL2_image
|
|
|
|
, libSM
|
|
|
|
, libXext
|
|
|
|
, libpng
|
|
|
|
, freetype
|
|
|
|
, libGLU
|
|
|
|
, libGL
|
|
|
|
, glew
|
|
|
|
, glm
|
|
|
|
, openal
|
|
|
|
, libogg
|
|
|
|
, libvorbis
|
2016-09-30 03:17:29 +03:00
|
|
|
}:
|
2010-05-17 13:21:42 +04:00
|
|
|
|
2015-05-28 18:22:56 +03:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 15:41:18 +03:00
|
|
|
pname = "supertux";
|
2022-01-22 13:32:42 +03:00
|
|
|
version = "0.6.3";
|
2010-05-17 13:21:42 +04:00
|
|
|
|
2015-12-30 02:40:43 +03:00
|
|
|
src = fetchurl {
|
2016-09-30 03:17:29 +03:00
|
|
|
url = "https://github.com/SuperTux/supertux/releases/download/v${version}/SuperTux-v${version}-Source.tar.gz";
|
2022-01-22 13:32:42 +03:00
|
|
|
sha256 = "1xkr3ka2sxp5s0spp84iv294i29s1vxqzazb6kmjc0n415h0x57p";
|
2010-05-17 13:21:42 +04:00
|
|
|
};
|
|
|
|
|
2023-02-05 16:56:47 +03:00
|
|
|
postPatch = ''
|
|
|
|
sed '1i#include <memory>' -i external/partio_zip/zip_manager.hpp # gcc12
|
|
|
|
'';
|
|
|
|
|
2021-01-17 08:49:22 +03:00
|
|
|
nativeBuildInputs = [ pkg-config cmake ];
|
2016-09-30 03:17:29 +03:00
|
|
|
|
2022-08-23 19:51:40 +03:00
|
|
|
buildInputs = [
|
|
|
|
boost
|
|
|
|
curl
|
|
|
|
SDL2
|
|
|
|
SDL2_image
|
|
|
|
libSM
|
|
|
|
libXext
|
|
|
|
libpng
|
|
|
|
freetype
|
|
|
|
libGL
|
|
|
|
libGLU
|
|
|
|
glew
|
|
|
|
glm
|
|
|
|
openal
|
|
|
|
libogg
|
|
|
|
libvorbis
|
2019-02-07 23:24:59 +03:00
|
|
|
];
|
2016-09-30 03:17:29 +03:00
|
|
|
|
|
|
|
cmakeFlags = [ "-DENABLE_BOOST_STATIC_LIBS=OFF" ];
|
2010-05-17 13:21:42 +04:00
|
|
|
|
2015-05-28 18:22:56 +03:00
|
|
|
postInstall = ''
|
|
|
|
mkdir $out/bin
|
|
|
|
ln -s $out/games/supertux2 $out/bin
|
|
|
|
'';
|
2010-05-17 13:21:42 +04:00
|
|
|
|
2021-01-11 10:54:33 +03:00
|
|
|
meta = with lib; {
|
2015-05-28 18:22:56 +03:00
|
|
|
description = "Classic 2D jump'n run sidescroller game";
|
2022-08-31 12:48:05 +03:00
|
|
|
homepage = "https://supertux.github.io/";
|
2015-05-28 18:22:56 +03:00
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = with maintainers; [ pSub ];
|
2016-08-02 20:50:55 +03:00
|
|
|
platforms = with platforms; linux;
|
2022-08-31 12:48:05 +03:00
|
|
|
mainProgram = "supertux2";
|
2010-05-17 13:21:42 +04:00
|
|
|
};
|
|
|
|
}
|