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