2018-07-21 01:44:44 +01:00
|
|
|
{ runCommand, lib, fontconfig, fontDirectories }:
|
2016-01-29 11:40:27 +00:00
|
|
|
|
|
|
|
runCommand "fc-cache"
|
|
|
|
rec {
|
2017-09-11 17:19:58 +01:00
|
|
|
buildInputs = [ fontconfig.bin ];
|
2016-01-29 11:40:27 +00:00
|
|
|
passAsFile = [ "fontDirs" ];
|
|
|
|
fontDirs = ''
|
|
|
|
<!-- Font directories -->
|
|
|
|
${lib.concatStringsSep "\n" (map (font: "<dir>${font}</dir>") fontDirectories)}
|
|
|
|
'';
|
|
|
|
}
|
|
|
|
''
|
|
|
|
export FONTCONFIG_FILE=$(pwd)/fonts.conf
|
|
|
|
|
|
|
|
cat > fonts.conf << EOF
|
|
|
|
<?xml version='1.0'?>
|
|
|
|
<!DOCTYPE fontconfig SYSTEM 'fonts.dtd'>
|
|
|
|
<fontconfig>
|
2016-02-02 03:58:34 +00:00
|
|
|
<include>${fontconfig.out}/etc/fonts/fonts.conf</include>
|
2016-01-29 11:40:27 +00:00
|
|
|
<cachedir>$out</cachedir>
|
|
|
|
EOF
|
|
|
|
cat "$fontDirsPath" >> fonts.conf
|
|
|
|
echo "</fontconfig>" >> fonts.conf
|
|
|
|
|
|
|
|
mkdir -p $out
|
|
|
|
fc-cache -sv
|
2018-02-07 17:59:10 +00:00
|
|
|
|
|
|
|
# This is not a cache dir in the normal sense -- it won't be automatically
|
|
|
|
# recreated.
|
|
|
|
rm "$out/CACHEDIR.TAG"
|
2016-01-29 11:40:27 +00:00
|
|
|
''
|