nixpkgs/pkgs/games/xmoto/default.nix

30 lines
889 B
Nix
Raw Normal View History

{ stdenv, fetchurl, chipmunk, sqlite, curl, zlib, bzip2, libjpeg
2019-11-10 16:44:34 +00:00
, libpng, freeglut, libGLU, libGL, SDL, SDL_mixer, SDL_image, SDL_net
, SDL_ttf, lua5, ode, libxdg_basedir, libxml2 }:
stdenv.mkDerivation rec {
pname = "xmoto";
version = "0.5.11";
src = fetchurl {
url = "https://download.tuxfamily.org/xmoto/xmoto/${version}/xmoto-${version}-src.tar.gz";
sha256 = "1ci6r8zd0l7z28cy92ddf9dmqbdqwinz2y1cny34c61b57wsd155";
};
buildInputs = [
chipmunk sqlite curl zlib bzip2 libjpeg libpng
2019-11-10 16:44:34 +00:00
freeglut libGLU libGL SDL SDL_mixer SDL_image SDL_net SDL_ttf
lua5 ode libxdg_basedir libxml2
];
2018-03-02 06:35:18 +00:00
CXXFLAGS = [ "-fpermissive" ];
meta = with stdenv.lib; {
description = "Obstacled race game";
homepage = "http://xmoto.tuxfamily.org";
maintainers = with maintainers; [ raskin pSub ];
platforms = platforms.linux;
2018-07-22 15:08:30 +00:00
license = licenses.gpl2;
};
}