Adding the simple port of hexen.

svn path=/nixpkgs/trunk/; revision=15046
This commit is contained in:
Lluís Batlle i Rossell 2009-04-14 22:25:14 +00:00
parent 035b95a4de
commit 9471c2f7db
2 changed files with 21 additions and 0 deletions

View file

@ -0,0 +1,17 @@
{stdenv, fetchurl, SDL} :
stdenv.mkDerivation {
name = "hexen-0.2.3";
src = fetchurl {
url = http://www.libsdl.org/projects/hexen/src/hexen-0.2.3.tar.gz;
sha256 = "c1433e930f2003c5f817f935406bb28ba15298a15b1c11f83f42df3e9f1f3bc4";
};
buildInputs = [ SDL ];
meta = {
homepage = http://www.libsdl.org/projects/hexen/;
description = "Port of Raven Software's popular Hexen 3-D shooter game";
license = "free";
};
}

View file

@ -9366,6 +9366,10 @@ let
flex = flex2535;
};
hexen = import ../games/hexen {
inherit stdenv fetchurl SDL;
};
kobodeluxe = import ../games/kobodeluxe {
inherit stdenv fetchurl SDL SDL_image;
};