2004-03-30 19:28:41 +02:00
|
|
|
{stdenv, fetchurl, freetype, expat}:
|
|
|
|
|
2009-10-29 14:22:43 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "fontconfig-2.7.3";
|
2008-03-07 16:43:43 +01:00
|
|
|
|
2004-03-30 19:28:41 +02:00
|
|
|
src = fetchurl {
|
2009-10-29 14:22:43 +01:00
|
|
|
url = "http://fontconfig.org/release/${name}.tar.gz";
|
|
|
|
sha256 = "0l5hjifapv4v88a204ixg6w6xly81cji2cr65znra0vbbkqvz3xs";
|
2004-03-30 19:28:41 +02:00
|
|
|
};
|
2008-03-07 16:43:43 +01:00
|
|
|
|
2004-03-30 19:28:41 +02:00
|
|
|
buildInputs = [freetype];
|
|
|
|
propagatedBuildInputs = [expat]; # !!! shouldn't be necessary, but otherwise pango breaks
|
2008-03-07 16:43:43 +01:00
|
|
|
|
2009-10-29 14:22:43 +01:00
|
|
|
configureFlags = "--with-confdir=/etc/fonts --with-cache-dir=/var/cache/fontconfig --disable-docs --with-default-fonts=";
|
|
|
|
|
2009-10-29 19:17:45 +01:00
|
|
|
# Don't try to write to /etc/fonts or /var/cache/fontconfig at install time.
|
2009-10-30 09:26:20 +01:00
|
|
|
installFlags = "CONFDIR=$(out)/etc/fonts RUN_FC_CACHE_TEST=false fc_cachedir=$(TMPDIR)/dummy";
|
2008-03-07 16:43:43 +01:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "A library for font customization and configuration";
|
|
|
|
homepage = http://fontconfig.org/;
|
2009-10-29 14:22:43 +01:00
|
|
|
license = "bsd";
|
2008-03-07 16:43:43 +01:00
|
|
|
};
|
2004-03-30 19:28:41 +02:00
|
|
|
}
|