2012-09-26 21:07:11 +02:00
|
|
|
{ stdenv, fetchurl, pkgconfig, freetype, expat }:
|
2004-03-30 19:28:41 +02:00
|
|
|
|
2009-10-29 14:22:43 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2012-09-26 21:07:11 +02:00
|
|
|
name = "fontconfig-2.10.1";
|
|
|
|
|
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";
|
2012-09-26 21:07:11 +02:00
|
|
|
sha256 = "08h252crb3aqciwdk81jypmz2i7618dzqn3zlr87w1f017wjp4f3";
|
2004-03-30 19:28:41 +02:00
|
|
|
};
|
2012-09-26 21:07:11 +02:00
|
|
|
|
|
|
|
buildInputs = [ pkgconfig freetype ];
|
|
|
|
|
2010-07-18 23:55:31 +02:00
|
|
|
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-11-26 22:26:42 +01:00
|
|
|
# We should find a better way to access the arch reliably.
|
2012-09-26 21:07:43 +02:00
|
|
|
crossArch = stdenv.cross.arch or null;
|
2009-11-26 22:26:42 +01:00
|
|
|
|
2009-11-21 11:44:22 +01:00
|
|
|
preConfigure = ''
|
|
|
|
if test -n "$crossConfig"; then
|
|
|
|
configureFlags="$configureFlags --with-arch=$crossArch";
|
|
|
|
fi
|
|
|
|
'';
|
|
|
|
|
2012-05-16 00:04:47 +02:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
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";
|
2012-09-26 21:07:11 +02:00
|
|
|
};
|
2004-03-30 19:28:41 +02:00
|
|
|
}
|