2022-08-23 17:51:40 +01: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 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";
|
2022-01-22 10:32:42 +00:00
|
|
|
version = "0.6.3";
|
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";
|
2022-01-22 10:32:42 +00:00
|
|
|
sha256 = "1xkr3ka2sxp5s0spp84iv294i29s1vxqzazb6kmjc0n415h0x57p";
|
2010-05-17 10:21:42 +01:00
|
|
|
};
|
|
|
|
|
2023-02-05 13:56:47 +00:00
|
|
|
postPatch = ''
|
|
|
|
sed '1i#include <memory>' -i external/partio_zip/zip_manager.hpp # gcc12
|
|
|
|
'';
|
|
|
|
|
2021-01-17 05:49:22 +00:00
|
|
|
nativeBuildInputs = [ pkg-config cmake ];
|
2016-09-30 01:17:29 +01:00
|
|
|
|
2022-08-23 17:51:40 +01:00
|
|
|
buildInputs = [
|
|
|
|
boost
|
|
|
|
curl
|
|
|
|
SDL2
|
|
|
|
SDL2_image
|
|
|
|
libSM
|
|
|
|
libXext
|
|
|
|
libpng
|
|
|
|
freetype
|
|
|
|
libGL
|
|
|
|
libGLU
|
|
|
|
glew
|
|
|
|
glm
|
|
|
|
openal
|
|
|
|
libogg
|
|
|
|
libvorbis
|
2019-02-07 20:24:59 +00:00
|
|
|
];
|
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";
|
2022-08-31 10:48:05 +01:00
|
|
|
homepage = "https://supertux.github.io/";
|
2024-07-03 10:37:36 +01:00
|
|
|
license = licenses.gpl2Plus;
|
2015-05-28 16:22:56 +01:00
|
|
|
maintainers = with maintainers; [ pSub ];
|
2016-08-02 18:50:55 +01:00
|
|
|
platforms = with platforms; linux;
|
2022-08-31 10:48:05 +01:00
|
|
|
mainProgram = "supertux2";
|
2010-05-17 10:21:42 +01:00
|
|
|
};
|
|
|
|
}
|