2004-03-30 19:28:41 +02:00
|
|
|
{stdenv, fetchurl, freetype, expat}:
|
|
|
|
|
|
|
|
assert freetype != null && expat != null;
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2005-06-17 13:43:15 +02:00
|
|
|
name = "fontconfig-2.3.2";
|
2004-03-30 19:28:41 +02:00
|
|
|
builder = ./builder.sh;
|
|
|
|
src = fetchurl {
|
2006-01-30 17:04:03 +01:00
|
|
|
url = http://nix.cs.uu.nl/dist/tarballs/fontconfig-2.3.2.tar.gz;
|
2005-06-17 13:43:15 +02:00
|
|
|
md5 = "7354f9f125ea78a8f2851cb9c31d4866";
|
2004-03-30 19:28:41 +02:00
|
|
|
};
|
|
|
|
buildInputs = [freetype];
|
|
|
|
propagatedBuildInputs = [expat]; # !!! shouldn't be necessary, but otherwise pango breaks
|
|
|
|
}
|