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 {
|
2013-01-29 13:47:14 +01:00
|
|
|
name = "fontconfig-2.10.2";
|
2012-09-26 21:07:11 +02:00
|
|
|
|
2004-03-30 19:28:41 +02:00
|
|
|
src = fetchurl {
|
2013-01-29 13:47:14 +01:00
|
|
|
url = "http://fontconfig.org/release/${name}.tar.bz2";
|
|
|
|
sha256 = "0llraqw86jmw4vzv7inskp3xxm2gc64my08iwq5mzncgfdbfza4f";
|
2004-03-30 19:28:41 +02:00
|
|
|
};
|
2012-09-26 21:07:11 +02:00
|
|
|
|
2013-02-10 14:41:29 +01:00
|
|
|
infinality_patch = with freetype.infinality; if useInfinality
|
|
|
|
then let subvers = "1";
|
|
|
|
in fetchurl {
|
|
|
|
url = "${base_URL}/fontconfig-infinality-1-${vers}_${subvers}.tar.bz2";
|
|
|
|
sha256 = "1fm5xx0mx2243jrq5rxk4v0ajw2nawpj23399h710bx6hd1rviq7";
|
|
|
|
}
|
|
|
|
else null;
|
2012-09-26 21:07:11 +02:00
|
|
|
|
2013-02-10 14:19:34 +01:00
|
|
|
buildInputs = [ pkgconfig freetype expat ];
|
|
|
|
|
2013-05-07 13:03:25 +02:00
|
|
|
configureFlags = "--sysconfdir=/etc --with-cache-dir=/var/cache/fontconfig --disable-docs --with-default-fonts=";
|
2009-10-29 14:22:43 +01:00
|
|
|
|
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.
|
2013-05-07 13:03:25 +02:00
|
|
|
installFlags = "sysconfdir=$(out)/etc RUN_FC_CACHE_TEST=false fc_cachedir=$(TMPDIR)/dummy";
|
2008-03-07 16:43:43 +01:00
|
|
|
|
2013-06-18 22:02:52 +02:00
|
|
|
postInstall = stdenv.lib.optionalString freetype.infinality.useInfinality ''
|
2013-02-10 14:41:29 +01:00
|
|
|
cd "$out/etc/fonts" && tar xvf ${infinality_patch}
|
|
|
|
'';
|
|
|
|
|
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";
|
2013-06-18 22:02:52 +02:00
|
|
|
platforms = stdenv.lib.platforms.all;
|
2012-09-26 21:07:11 +02:00
|
|
|
};
|
2004-03-30 19:28:41 +02:00
|
|
|
}
|