Adding 3dpong.

svn path=/nixpkgs/trunk/; revision=27498
This commit is contained in:
Lluís Batlle i Rossell 2011-06-19 21:33:31 +00:00
parent cc1d27bf68
commit 746da25d6b
2 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,22 @@
{stdenv, fetchurl, libX11}:
stdenv.mkDerivation {
name = "3dpong-0.5.0";
src = fetchurl {
url = ftp://ftp.tuxpaint.org/unix/x/3dpong/src/3dpong-0.5.tar.gz;
sha256 = "1ibb79sbzlbn4ra3n0qk22gqr6fg7q0jy6cm0wg2qj4z64c7hmdi";
};
buildInputs = [ libX11 ];
preConfigure = ''
sed -i s,/usr/local,$out, Makefile
ensureDir $out/bin
'';
meta = {
homepage = http://www.newbreedsoftware.com/3dpong/;
description = "One or two player 3d sports game based on Pong from Atari";
license = "GPLv2+";
};
}

View File

@ -7399,6 +7399,8 @@ let
pioneers = callPackage ../games/pioneers { };
pong3d = callPackage ../games/pong3d { };
prboom = callPackage ../games/prboom { };
quake3demo = callPackage ../games/quake3/wrapper {