2012-09-26 20:07:11 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, freetype, expat }:
|
2004-03-30 18:28:41 +01:00
|
|
|
|
2009-10-29 13:22:43 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2014-02-20 19:52:27 +00:00
|
|
|
name = "fontconfig-2.10.2";
|
2012-09-26 20:07:11 +01:00
|
|
|
|
2004-03-30 18:28:41 +01:00
|
|
|
src = fetchurl {
|
2013-01-29 12:47:14 +00:00
|
|
|
url = "http://fontconfig.org/release/${name}.tar.bz2";
|
2014-02-20 19:52:27 +00:00
|
|
|
sha256 = "0llraqw86jmw4vzv7inskp3xxm2gc64my08iwq5mzncgfdbfza4f";
|
2004-03-30 18:28:41 +01:00
|
|
|
};
|
2012-09-26 20:07:11 +01: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 17:44:33 +01: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 20:07:11 +01:00
|
|
|
|
2014-02-05 07:16:33 +00:00
|
|
|
propagatedBuildInputs = [ freetype ];
|
|
|
|
buildInputs = [ pkgconfig expat ];
|
2013-02-10 13:19:34 +00:00
|
|
|
|
2013-05-07 12:03:25 +01: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 20:07:43 +01: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 23:04:47 +01: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 12:03:25 +01: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 21:02:52 +01:00
|
|
|
postInstall = stdenv.lib.optionalString freetype.infinality.useInfinality ''
|
2013-02-10 13:41:29 +00:00
|
|
|
cd "$out/etc/fonts" && tar xvf ${infinality_patch}
|
|
|
|
'';
|
|
|
|
|
2014-02-05 07:16:33 +00:00
|
|
|
meta = with stdenv.lib; {
|
2008-03-07 15:43:43 +00:00
|
|
|
description = "A library for font customization and configuration";
|
|
|
|
homepage = http://fontconfig.org/;
|
2014-02-05 07:16:33 +00:00
|
|
|
license = licenses.bsd2; # custom but very bsd-like
|
|
|
|
platforms = platforms.all;
|
|
|
|
maintainers = [ maintainers.vcunat ];
|
2012-09-26 20:07:11 +01:00
|
|
|
};
|
2004-03-30 18:28:41 +01:00
|
|
|
}
|