nixpkgs/pkgs/games/supertux/default.nix

36 lines
971 B
Nix
Raw Normal View History

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