2012-09-26 19:07:11 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, freetype, expat }:
|
2004-03-30 17:28:41 +00:00
|
|
|
|
2009-10-29 13:22:43 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2014-02-02 09:46:08 +00:00
|
|
|
name = "fontconfig-2.11.0";
|
2012-09-26 19:07:11 +00:00
|
|
|
|
2004-03-30 17:28:41 +00:00
|
|
|
src = fetchurl {
|
2013-01-29 12:47:14 +00:00
|
|
|
url = "http://fontconfig.org/release/${name}.tar.bz2";
|
2014-02-02 09:46:08 +00:00
|
|
|
sha256 = "0rx4q7wcrz4lkpgcmqkwkp49v1fm0yxl0f35jn75dj1vy3v0w3nb";
|
2004-03-30 17:28:41 +00:00
|
|
|
};
|
2012-09-26 19:07:11 +00:00
|
|
|
|
2013-02-10 13:41:29 +00:00
|
|
|
infinality_patch = with freetype.infinality; if useInfinality
|
|
|
|
then let subvers = "1";
|
|
|
|
in fetchurl {
|
2013-06-21 16:44:33 +00:00
|
|
|
url = http://www.infinality.net/fedora/linux/zips/fontconfig-infinality-1-20130104_1.tar.bz2;
|
2013-02-10 13:41:29 +00:00
|
|
|
sha256 = "1fm5xx0mx2243jrq5rxk4v0ajw2nawpj23399h710bx6hd1rviq7";
|
|
|
|
}
|
|
|
|
else null;
|
2012-09-26 19:07:11 +00:00
|
|
|
|
2013-02-10 13:19:34 +00:00
|
|
|
buildInputs = [ pkgconfig freetype expat ];
|
|
|
|
|
2013-05-07 11:03:25 +00:00
|
|
|
configureFlags = "--sysconfdir=/etc --with-cache-dir=/var/cache/fontconfig --disable-docs --with-default-fonts=";
|
2009-10-29 13:22:43 +00:00
|
|
|
|
2009-11-26 21:26:42 +00:00
|
|
|
# We should find a better way to access the arch reliably.
|
2012-09-26 19:07:43 +00:00
|
|
|
crossArch = stdenv.cross.arch or null;
|
2009-11-26 21:26:42 +00:00
|
|
|
|
2009-11-21 10:44:22 +00:00
|
|
|
preConfigure = ''
|
|
|
|
if test -n "$crossConfig"; then
|
|
|
|
configureFlags="$configureFlags --with-arch=$crossArch";
|
|
|
|
fi
|
|
|
|
'';
|
|
|
|
|
2012-05-15 22:04:47 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2009-10-29 18:17:45 +00:00
|
|
|
# Don't try to write to /etc/fonts or /var/cache/fontconfig at install time.
|
2013-05-07 11:03:25 +00:00
|
|
|
installFlags = "sysconfdir=$(out)/etc RUN_FC_CACHE_TEST=false fc_cachedir=$(TMPDIR)/dummy";
|
2008-03-07 15:43:43 +00:00
|
|
|
|
2013-06-18 20:02:52 +00:00
|
|
|
postInstall = stdenv.lib.optionalString freetype.infinality.useInfinality ''
|
2013-02-10 13:41:29 +00:00
|
|
|
cd "$out/etc/fonts" && tar xvf ${infinality_patch}
|
|
|
|
'';
|
|
|
|
|
2008-03-07 15:43:43 +00:00
|
|
|
meta = {
|
|
|
|
description = "A library for font customization and configuration";
|
|
|
|
homepage = http://fontconfig.org/;
|
2009-10-29 13:22:43 +00:00
|
|
|
license = "bsd";
|
2013-06-18 20:02:52 +00:00
|
|
|
platforms = stdenv.lib.platforms.all;
|
2012-09-26 19:07:11 +00:00
|
|
|
};
|
2004-03-30 17:28:41 +00:00
|
|
|
}
|