nixpkgs/pkgs/games/supertux/default.nix

33 lines
921 B
Nix
Raw Normal View History

2016-09-30 00:17:29 +00:00
{ stdenv, fetchurl, cmake, pkgconfig, SDL2, SDL2_image , curl
, libogg, libvorbis, mesa, openal, boost, glew
}:
2015-05-28 15:22:56 +00:00
stdenv.mkDerivation rec {
name = "supertux-${version}";
2016-11-17 18:52:33 +00:00
version = "0.5.1";
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";
2016-11-17 18:52:33 +00:00
sha256 = "1i8avad7w7ikj870z519j383ldy29r6f956bs38cbr8wk513pp69";
};
2016-09-30 00:17:29 +00:00
nativeBuildInputs = [ pkgconfig cmake ];
buildInputs = [ SDL2 SDL2_image curl libogg libvorbis mesa openal boost glew ];
cmakeFlags = [ "-DENABLE_BOOST_STATIC_LIBS=OFF" ];
2015-05-28 15:22:56 +00:00
postInstall = ''
mkdir $out/bin
ln -s $out/games/supertux2 $out/bin
'';
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 ];
platforms = with platforms; linux;
};
}