2009-11-06 19:25:45 +00:00
|
|
|
{stdenv, fetchurl, SDL, mesa, libpng, libjpeg, SDL_ttf, libvorbis, gettext,
|
|
|
|
physfs} :
|
2009-03-04 17:28:25 +00:00
|
|
|
|
2009-11-06 19:25:45 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "neverball-1.5.4";
|
2009-03-04 17:28:25 +00:00
|
|
|
src = fetchurl {
|
2009-11-06 19:25:45 +00:00
|
|
|
url = "http://neverball.org/${name}.tar.gz";
|
|
|
|
sha256 = "19hdgdmv20y56xvbj4vk0zdmyaa8kv7df85advkchw7cdsgwlcga";
|
2009-03-04 17:28:25 +00:00
|
|
|
};
|
|
|
|
|
2009-11-06 19:25:45 +00:00
|
|
|
buildInputs = [ SDL mesa libpng libjpeg SDL_ttf libvorbis gettext physfs];
|
2009-03-04 17:28:25 +00:00
|
|
|
|
|
|
|
dontPatchElf = true;
|
|
|
|
|
|
|
|
patchPhase = ''
|
2009-11-06 19:25:54 +00:00
|
|
|
sed -i -e 's@\./data@'$out/data@ share/base_config.h Makefile
|
|
|
|
sed -i -e 's@\./locale@'$out/locale@ share/base_config.h Makefile
|
2009-04-14 22:01:23 +01:00
|
|
|
sed -i -e 's@-lvorbisfile@-lvorbisfile -lX11 -lgcc_s@' Makefile
|
2009-03-04 17:28:25 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
ensureDir $out/bin $out
|
|
|
|
cp -R data locale $out
|
|
|
|
cp neverball $out/bin
|
|
|
|
cp neverputt $out/bin
|
|
|
|
cp mapc $out/bin
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://neverball.org/;
|
|
|
|
description = "Tilt the floor to roll a ball";
|
|
|
|
license = "GPL";
|
|
|
|
};
|
|
|
|
}
|