Adding me as a comaintainer of xmoto.
[nixpkgs-libre.git] / pkgs / games / xmoto / default.nix
blob971d29584c18513d55abf42d114b9c6e3baac049
1 a :  
2 let 
3   s = import ./src-for-default.nix;
4   buildInputs = with a; [
5     chipmunk sqlite curl zlib bzip2 libjpeg libpng
6     freeglut mesa SDL SDL_mixer SDL_image SDL_net SDL_ttf 
7     lua5 ode
8   ];
9 in
10 rec {
11   src = a.fetchUrlFromSrcInfo s;
13   inherit (s) name;
14   inherit buildInputs;
15   configureFlags = [];
17   /* doConfigure should be removed if not needed */
18   phaseNames = [ "doPatch" "doConfigure" "doMakeInstall"];
20   patches = [ ./64bit-ftbs.patch ];
21       
22   meta = {
23     description = "X-Moto - obstacled race game";
24     maintainers = [
25       a.lib.maintainers.raskin
26       a.lib.maintainers.viric
27     ];
28     platforms = with a.lib.platforms; 
29       linux ++ freebsd;
30   };