2014-11-04 12:49:22 +00:00
|
|
|
{ stdenv, fetchurl, fetchpatch, pkgconfig, freetype, expat, libxslt, fontbhttf
|
|
|
|
, substituteAll }:
|
|
|
|
|
|
|
|
/** Font configuration scheme
|
|
|
|
- ./config-compat.patch makes fontconfig try the following root configs, in order:
|
|
|
|
$FONTCONFIG_FILE, /etc/fonts/${configVersion}/fonts.conf, /etc/fonts/fonts.conf
|
|
|
|
This is done not to override config of pre-2.11 versions (which just blow up)
|
|
|
|
and still use *global* font configuration at both NixOS or non-NixOS.
|
|
|
|
- NixOS creates /etc/fonts/${configVersion}/fonts.conf link to $out/etc/fonts/fonts.conf,
|
|
|
|
and other modifications should go to /etc/fonts/${configVersion}/conf.d
|
|
|
|
- See ./make-fonts-conf.xsl for config details.
|
|
|
|
|
|
|
|
*/
|
2004-03-30 17:28:41 +00:00
|
|
|
|
2014-09-27 18:08:45 +00:00
|
|
|
let
|
|
|
|
configVersion = "2.11"; # bump whenever fontconfig breaks compatibility with older configurations
|
|
|
|
in
|
2009-10-29 13:22:43 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2014-09-27 18:08:45 +00:00
|
|
|
name = "fontconfig-2.11.1";
|
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-09-27 18:08:45 +00:00
|
|
|
sha256 = "16baa4g5lswkyjlyf1h5lwc0zjap7c4d8grw79349a5w6dsl8qnw";
|
2004-03-30 17:28:41 +00:00
|
|
|
};
|
2012-09-26 19:07:11 +00:00
|
|
|
|
2014-11-04 12:49:22 +00:00
|
|
|
patches = [
|
2014-11-26 14:56:49 +00:00
|
|
|
(fetchpatch ({
|
|
|
|
url = "http://cgit.freedesktop.org/fontconfig/patch/?id=f44157c809d280e2a0ce87fb078fc4b278d24a67";
|
|
|
|
sha256 = "19s5irclg4irj2yxd7xw9yikbazs9263px8qbv4r21asw06nfalv";
|
2014-12-01 21:01:20 +00:00
|
|
|
name = "fc-cache-bug-77252.patch";
|
2014-11-26 14:56:49 +00:00
|
|
|
}
|
|
|
|
))
|
2014-11-04 12:49:22 +00:00
|
|
|
(substituteAll {
|
|
|
|
src = ./config-compat.patch;
|
|
|
|
inherit configVersion;
|
|
|
|
})
|
|
|
|
];
|
2014-10-19 07:54:07 +00:00
|
|
|
|
2014-02-05 07:16:33 +00:00
|
|
|
propagatedBuildInputs = [ freetype ];
|
2014-11-04 12:49:22 +00:00
|
|
|
buildInputs = [ pkgconfig expat ];
|
2013-02-10 13:19:34 +00:00
|
|
|
|
2014-06-09 17:47:31 +00:00
|
|
|
configureFlags = [
|
2014-11-04 12:49:22 +00:00
|
|
|
"--with-cache-dir=/var/cache/fontconfig" # otherwise the fallback is in $out/
|
2014-06-09 17:47:31 +00:00
|
|
|
"--disable-docs"
|
2014-11-04 12:49:22 +00:00
|
|
|
# just ~1MB; this is what you get when loading config fails for some reason
|
2014-09-27 18:08:45 +00:00
|
|
|
"--with-default-fonts=${fontbhttf}"
|
2014-06-09 17:47:31 +00:00
|
|
|
];
|
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;
|
|
|
|
|
2014-12-17 13:39:55 +00:00
|
|
|
doCheck = false;
|
2008-03-07 15:43:43 +00:00
|
|
|
|
2014-06-09 17:47:31 +00:00
|
|
|
# Don't try to write to /var/cache/fontconfig at install time.
|
2014-09-27 18:08:45 +00:00
|
|
|
installFlags = "fc_cachedir=$(TMPDIR)/dummy RUN_FC_CACHE_TEST=false";
|
2014-06-09 17:47:31 +00:00
|
|
|
|
|
|
|
postInstall = ''
|
2014-11-26 21:03:45 +00:00
|
|
|
cd "$out/etc/fonts"
|
2014-10-19 07:54:07 +00:00
|
|
|
rm conf.d/{50-user,51-local}.conf
|
2014-11-04 12:49:22 +00:00
|
|
|
"${libxslt}/bin/xsltproc" --stringparam fontDirectories "${fontbhttf}" \
|
2014-09-27 18:08:45 +00:00
|
|
|
--stringparam fontconfig "$out" \
|
|
|
|
--stringparam fontconfigConfigVersion "${configVersion}" \
|
|
|
|
--path $out/share/xml/fontconfig \
|
|
|
|
${./make-fonts-conf.xsl} $out/etc/fonts/fonts.conf \
|
|
|
|
> fonts.conf.tmp
|
|
|
|
mv fonts.conf.tmp $out/etc/fonts/fonts.conf
|
2013-02-10 13:41:29 +00:00
|
|
|
'';
|
|
|
|
|
2014-09-27 18:08:45 +00:00
|
|
|
passthru = {
|
|
|
|
inherit configVersion;
|
|
|
|
};
|
2014-10-19 07:54:07 +00:00
|
|
|
|
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 19:07:11 +00:00
|
|
|
};
|
2004-03-30 17:28:41 +00:00
|
|
|
}
|
2014-10-19 07:54:07 +00:00
|
|
|
|