* Refactoring: move fontconfig out of xlibs.

svn path=/nixpkgs/trunk/; revision=4221
This commit is contained in:
Eelco Dolstra
2005-11-04 13:07:22 +00:00
parent 65a411cadc
commit e68763576b
4 changed files with 21 additions and 19 deletions
@@ -0,0 +1,14 @@
{stdenv, fetchurl, freetype, expat}:
assert freetype != null && expat != null;
stdenv.mkDerivation {
name = "fontconfig-2.3.2";
builder = ./builder.sh;
src = fetchurl {
url = http://www.fontconfig.org/release/fontconfig-2.3.2.tar.gz;
md5 = "7354f9f125ea78a8f2851cb9c31d4866";
};
buildInputs = [freetype];
propagatedBuildInputs = [expat]; # !!! shouldn't be necessary, but otherwise pango breaks
}