2010-07-30 12:48:13 +02:00
|
|
|
{stdenv, fetchurl, perl, expat, x11, freetype}:
|
2004-04-01 22:20:09 +02:00
|
|
|
|
|
|
|
# !!! assert freetype == xlibs.freetype
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "zoom-1.0.2alpha1";
|
2010-07-30 12:48:13 +02:00
|
|
|
|
2004-04-01 22:20:09 +02:00
|
|
|
src = fetchurl {
|
2007-08-24 14:32:36 +02:00
|
|
|
url = http://www.logicalshift.demon.co.uk/unix/zoom/zoom-1.0.2alpha1.tar.gz;
|
2004-04-01 22:20:09 +02:00
|
|
|
md5 = "91b2fe444028178aa3b23bd0e3ae1a61";
|
|
|
|
};
|
2010-07-30 12:48:13 +02:00
|
|
|
|
|
|
|
buildInputs = [perl expat x11 freetype];
|
|
|
|
|
2004-04-01 22:20:09 +02:00
|
|
|
# Zoom doesn't add the right directory in the include path.
|
2006-10-17 16:06:18 +02:00
|
|
|
CFLAGS = ["-I" (freetype + "/include/freetype2")];
|
2004-04-01 22:20:09 +02:00
|
|
|
}
|