33 lines
839 B
Nix
33 lines
839 B
Nix
a :
|
|
let
|
|
s = import ./src-for-default.nix;
|
|
buildInputs = with a; [
|
|
chipmunk sqlite curl zlib bzip2 libjpeg libpng
|
|
freeglut mesa SDL SDL_mixer SDL_image SDL_net SDL_ttf
|
|
lua5 ode libxdg_basedir libxml2
|
|
];
|
|
in
|
|
rec {
|
|
src = a.fetchUrlFromSrcInfo s;
|
|
|
|
inherit (s) name;
|
|
inherit buildInputs;
|
|
configureFlags = [];
|
|
|
|
/* doConfigure should be removed if not needed */
|
|
phaseNames = [ "patchIncludes" "doConfigure" "doMakeInstall"];
|
|
patchIncludes = a.fullDepEntry ''
|
|
sed -e '1i#include <sys/types.h>' -i src/helpers//System.cpp
|
|
sed -e '1i#include <unistd.h>' -i src/helpers//System.cpp
|
|
'' ["doUnpack" "minInit"];
|
|
|
|
meta = {
|
|
description = "X-Moto - obstacled race game";
|
|
maintainers = [
|
|
a.lib.maintainers.raskin
|
|
a.lib.maintainers.viric
|
|
];
|
|
platforms = a.lib.platforms.linux;
|
|
};
|
|
}
|