Adding GPL Arcade Volleyball.

I had this patch _almost_ ready for a long long time. Now ready.

svn path=/nixpkgs/trunk/; revision=14017
This commit is contained in:
Lluís Batlle i Rossell 2009-02-09 22:44:36 +00:00
parent 18cc7f4b37
commit 21fd05797c
2 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,23 @@
{stdenv, fetchurl, SDL, SDL_image, SDL_mixer, SDL_net} :
stdenv.mkDerivation {
name = "gav-0.9.0";
src = fetchurl {
url = "mirror://sourceforge/gav/gav-0.9.0.tar.gz";
sha256 = "8f0deb8b2cd775b339229054f4f282583a4cfbcba9d27a6213cf910bab944f3e";
};
patchPhase = ''
mkdir -p $out/bin
sed -e "s@/usr@$out@" -i Makefile
sed -e "s@/usr@$out@" -i Theme.h
'';
buildInputs = [SDL SDL_image SDL_mixer SDL_net];
meta = {
description = "Remake of AV Arcade Volleyball";
homepage = http://gav.sourceforge.net/;
license = "GPLv2+";
};
}

View File

@ -2965,6 +2965,10 @@ let
inherit (gtkLibs) glib;
};
gav = import ../games/gav {
inherit fetchurl stdenv SDL SDL_image SDL_mixer SDL_net;
};
gdbm = import ../development/libraries/gdbm {
inherit fetchurl stdenv;
};