2009-09-13 22:31:33 +04:00
|
|
|
a :
|
2008-11-30 20:15:29 +03:00
|
|
|
let
|
2009-09-13 22:31:33 +04:00
|
|
|
s = import ./src-for-default.nix;
|
|
|
|
buildInputs = with a; [
|
2008-11-30 20:15:29 +03:00
|
|
|
chipmunk sqlite curl zlib bzip2 libjpeg libpng
|
|
|
|
freeglut mesa SDL SDL_mixer SDL_image SDL_net SDL_ttf
|
2012-01-09 03:31:31 +04:00
|
|
|
lua5 ode libxdg_basedir libxml2
|
2008-11-30 20:15:29 +03:00
|
|
|
];
|
|
|
|
in
|
|
|
|
rec {
|
2009-09-13 22:31:33 +04:00
|
|
|
src = a.fetchUrlFromSrcInfo s;
|
2008-11-30 20:15:29 +03:00
|
|
|
|
2009-09-13 22:31:33 +04:00
|
|
|
inherit (s) name;
|
2008-11-30 20:15:29 +03:00
|
|
|
inherit buildInputs;
|
|
|
|
configureFlags = [];
|
|
|
|
|
2009-09-13 22:31:33 +04:00
|
|
|
/* doConfigure should be removed if not needed */
|
2012-12-04 14:50:50 +04:00
|
|
|
phaseNames = [ "doConfigure" "doMakeInstall"];
|
2012-01-09 03:31:31 +04:00
|
|
|
|
2008-11-30 20:15:29 +03:00
|
|
|
meta = {
|
|
|
|
description = "X-Moto - obstacled race game";
|
2009-09-13 22:31:33 +04:00
|
|
|
maintainers = [
|
|
|
|
a.lib.maintainers.raskin
|
2009-12-23 21:37:44 +03:00
|
|
|
a.lib.maintainers.viric
|
2009-09-13 22:31:33 +04:00
|
|
|
];
|
2012-03-14 01:48:12 +04:00
|
|
|
platforms = a.lib.platforms.linux;
|
2008-11-30 20:15:29 +03:00
|
|
|
};
|
|
|
|
}
|