2014-11-04 13:49:22 +01: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 19:28:41 +02:00
|
|
|
|
2014-09-27 20:08:45 +02:00
|
|
|
let
|
|
|
|
configVersion = "2.11"; # bump whenever fontconfig breaks compatibility with older configurations
|
|
|
|
in
|
2009-10-29 14:22:43 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2014-09-27 20:08:45 +02:00
|
|
|
name = "fontconfig-2.11.1";
|
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";
|
2014-09-27 20:08:45 +02:00
|
|
|
sha256 = "16baa4g5lswkyjlyf1h5lwc0zjap7c4d8grw79349a5w6dsl8qnw";
|
2004-03-30 19:28:41 +02:00
|
|
|
};
|
2012-09-26 21:07:11 +02:00
|
|
|
|
2014-11-04 13:49:22 +01:00
|
|
|
patches = [
|
2014-11-26 15:56:49 +01:00
|
|
|
(fetchpatch ({
|
|
|
|
url = "http://cgit.freedesktop.org/fontconfig/patch/?id=f44157c809d280e2a0ce87fb078fc4b278d24a67";
|
|
|
|
sha256 = "19s5irclg4irj2yxd7xw9yikbazs9263px8qbv4r21asw06nfalv";
|
2014-12-01 22:01:20 +01:00
|
|
|
name = "fc-cache-bug-77252.patch";
|
2014-11-26 15:56:49 +01:00
|
|
|
}
|
|
|
|
))
|
2014-11-04 13:49:22 +01:00
|
|
|
(substituteAll {
|
|
|
|
src = ./config-compat.patch;
|
|
|
|
inherit configVersion;
|
|
|
|
})
|
|
|
|
];
|
2014-10-19 09:54:07 +02:00
|
|
|
|
2015-10-05 12:23:02 +02:00
|
|
|
outputs = [ "dev" "lib" "bin" "out" ]; # $out contains all the config
|
|
|
|
|
2014-02-05 08:16:33 +01:00
|
|
|
propagatedBuildInputs = [ freetype ];
|
2014-11-04 13:49:22 +01:00
|
|
|
buildInputs = [ pkgconfig expat ];
|
2013-02-10 14:19:34 +01:00
|
|
|
|
2014-06-09 19:47:31 +02:00
|
|
|
configureFlags = [
|
2014-11-04 13:49:22 +01:00
|
|
|
"--with-cache-dir=/var/cache/fontconfig" # otherwise the fallback is in $out/
|
2014-06-09 19:47:31 +02:00
|
|
|
"--disable-docs"
|
2014-11-04 13:49:22 +01:00
|
|
|
# just ~1MB; this is what you get when loading config fails for some reason
|
2014-09-27 20:08:45 +02:00
|
|
|
"--with-default-fonts=${fontbhttf}"
|
2014-06-09 19:47:31 +02:00
|
|
|
];
|
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;
|
|
|
|
|
2014-12-17 22:07:36 +01:00
|
|
|
doCheck = true;
|
2008-03-07 16:43:43 +01:00
|
|
|
|
2014-06-09 19:47:31 +02:00
|
|
|
# Don't try to write to /var/cache/fontconfig at install time.
|
2014-09-27 20:08:45 +02:00
|
|
|
installFlags = "fc_cachedir=$(TMPDIR)/dummy RUN_FC_CACHE_TEST=false";
|
2014-06-09 19:47:31 +02:00
|
|
|
|
|
|
|
postInstall = ''
|
2014-11-26 22:03:45 +01:00
|
|
|
cd "$out/etc/fonts"
|
2015-10-05 13:23:01 +02:00
|
|
|
"${libxslt.bin}/bin/xsltproc" --stringparam fontDirectories "${fontbhttf}" \
|
2014-09-27 20:08:45 +02:00
|
|
|
--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 14:41:29 +01:00
|
|
|
'';
|
|
|
|
|
2014-09-27 20:08:45 +02:00
|
|
|
passthru = {
|
|
|
|
inherit configVersion;
|
|
|
|
};
|
2014-10-19 09:54:07 +02:00
|
|
|
|
2014-02-05 08:16:33 +01:00
|
|
|
meta = with stdenv.lib; {
|
2008-03-07 16:43:43 +01:00
|
|
|
description = "A library for font customization and configuration";
|
|
|
|
homepage = http://fontconfig.org/;
|
2014-02-05 08:16:33 +01:00
|
|
|
license = licenses.bsd2; # custom but very bsd-like
|
|
|
|
platforms = platforms.all;
|
|
|
|
maintainers = [ maintainers.vcunat ];
|
2012-09-26 21:07:11 +02:00
|
|
|
};
|
2004-03-30 19:28:41 +02:00
|
|
|
}
|
2014-10-19 09:54:07 +02:00
|
|
|
|