svn path=/nixpkgs/trunk/; revision=22822

This commit is contained in:
Eelco Dolstra 2010-07-30 10:48:13 +00:00
parent acd34843f0
commit 3386a0e63d
2 changed files with 6 additions and 4 deletions

View file

@ -1,14 +1,17 @@
{stdenv, fetchurl, perl, expat, xlibs, freetype}:
{stdenv, fetchurl, perl, expat, x11, freetype}:
# !!! assert freetype == xlibs.freetype
stdenv.mkDerivation {
name = "zoom-1.0.2alpha1";
src = fetchurl {
url = http://www.logicalshift.demon.co.uk/unix/zoom/zoom-1.0.2alpha1.tar.gz;
md5 = "91b2fe444028178aa3b23bd0e3ae1a61";
};
buildInputs = [perl expat xlibs freetype];
buildInputs = [perl expat x11 freetype];
# Zoom doesn't add the right directory in the include path.
CFLAGS = ["-I" (freetype + "/include/freetype2")];
}

View file

@ -9487,8 +9487,7 @@ let
};
zoom = import ../games/zoom {
inherit fetchurl stdenv perl expat freetype;
inherit (xlibs) xlibs;
inherit fetchurl stdenv perl expat freetype x11;
};
keen4 = import ../games/keen4 {