2018-07-21 01:44:44 +01:00
|
|
|
{ stdenv, substituteAll, fetchurl
|
2018-03-06 10:01:33 +00:00
|
|
|
, pkgconfig, freetype, expat, libxslt, gperf, dejavu_fonts
|
2017-06-28 21:09:01 +01:00
|
|
|
, hostPlatform
|
|
|
|
}:
|
2014-11-04 12:49:22 +00:00
|
|
|
|
|
|
|
/** 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 18:28:41 +01:00
|
|
|
|
2014-09-27 19:08:45 +01: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 {
|
2018-03-06 10:01:33 +00:00
|
|
|
name = "fontconfig-${version}";
|
|
|
|
version = "2.12.6";
|
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";
|
2018-03-06 10:01:33 +00:00
|
|
|
sha256 = "05zh65zni11kgnhg726gjbrd55swspdvhqbcnj5a5xh8gn03036g";
|
2004-03-30 18:28:41 +01:00
|
|
|
};
|
2012-09-26 20:07:11 +01:00
|
|
|
|
2014-11-04 12:49:22 +00:00
|
|
|
patches = [
|
|
|
|
(substituteAll {
|
|
|
|
src = ./config-compat.patch;
|
|
|
|
inherit configVersion;
|
|
|
|
})
|
|
|
|
];
|
2014-10-19 08:54:07 +01:00
|
|
|
|
2016-08-29 01:30:01 +01:00
|
|
|
outputs = [ "bin" "dev" "lib" "out" ]; # $out contains all the config
|
2015-10-05 11:23:02 +01:00
|
|
|
|
2014-02-05 07:16:33 +00:00
|
|
|
propagatedBuildInputs = [ freetype ];
|
2018-03-06 10:01:33 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig gperf ];
|
2017-09-05 22:26:13 +01:00
|
|
|
buildInputs = [ expat ];
|
2013-02-10 13:19:34 +00:00
|
|
|
|
2014-06-09 18:47:31 +01:00
|
|
|
configureFlags = [
|
2018-05-10 06:38:34 +01:00
|
|
|
"--with-arch=${hostPlatform.parsed.cpu.name}"
|
2014-11-04 12:49:22 +00:00
|
|
|
"--with-cache-dir=/var/cache/fontconfig" # otherwise the fallback is in $out/
|
2014-06-09 18:47:31 +01:00
|
|
|
"--disable-docs"
|
2016-08-29 21:28:50 +01:00
|
|
|
# just <1MB; this is what you get when loading config fails for some reason
|
|
|
|
"--with-default-fonts=${dejavu_fonts.minimal}"
|
2018-05-13 16:31:24 +01:00
|
|
|
] ++ stdenv.lib.optionals (stdenv.hostPlatform != stdenv.buildPlatform) [
|
|
|
|
"--with-arch=${hostPlatform.parsed.cpu.name}"
|
2014-06-09 18:47:31 +01:00
|
|
|
];
|
2009-10-29 13:22:43 +00:00
|
|
|
|
2012-05-15 23:04:47 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2014-12-17 21:07:36 +00:00
|
|
|
doCheck = true;
|
2008-03-07 15:43:43 +00:00
|
|
|
|
2014-06-09 18:47:31 +01:00
|
|
|
# Don't try to write to /var/cache/fontconfig at install time.
|
2014-09-27 19:08:45 +01:00
|
|
|
installFlags = "fc_cachedir=$(TMPDIR)/dummy RUN_FC_CACHE_TEST=false";
|
2014-06-09 18:47:31 +01:00
|
|
|
|
|
|
|
postInstall = ''
|
2014-11-26 21:03:45 +00:00
|
|
|
cd "$out/etc/fonts"
|
2016-08-29 21:28:50 +01:00
|
|
|
"${libxslt.bin}/bin/xsltproc" --stringparam fontDirectories "${dejavu_fonts.minimal}" \
|
2014-09-27 19:08:45 +01: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 13:41:29 +00:00
|
|
|
'';
|
|
|
|
|
2014-09-27 19:08:45 +01:00
|
|
|
passthru = {
|
|
|
|
inherit configVersion;
|
|
|
|
};
|
2014-10-19 08:54:07 +01: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 20:07:11 +01:00
|
|
|
};
|
2004-03-30 18:28:41 +01:00
|
|
|
}
|
2014-10-19 08:54:07 +01:00
|
|
|
|