forked from mirrors/nixpkgs
svn path=/nixpkgs/trunk/; revision=22822
This commit is contained in:
parent
acd34843f0
commit
3386a0e63d
|
@ -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")];
|
||||
}
|
||||
|
|
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue