core/pkgs/by-name/fo/fontconfig/make-fonts-cache.nix

33 lines
842 B
Nix
Raw Normal View History

2024-05-02 00:46:19 +00:00
{ runCommand, lib, fontconfig, fontDirectories }:
2024-05-13 21:24:10 +00:00
runCommand "fc-cache" {
nativeBuildInputs = [ fontconfig.bin ];
preferLocalBuild = true;
allowSubstitutes = false;
passAsFile = [ "fontDirs" ];
fontDirs = ''
<!-- Font directories -->
${lib.concatStringsSep "\n"
(map (font: "<dir>${font}</dir>") fontDirectories)}
'';
} ''
export FONTCONFIG_FILE=$(pwd)/fonts.conf
2024-05-02 00:46:19 +00:00
2024-05-13 21:24:10 +00:00
cat > fonts.conf << EOF
<?xml version='1.0'?>
<!DOCTYPE fontconfig SYSTEM 'urn:fontconfig:fonts.dtd'>
<fontconfig>
<include>${fontconfig.out}/etc/fonts/fonts.conf</include>
<cachedir>$out</cachedir>
EOF
cat "$fontDirsPath" >> fonts.conf
echo "</fontconfig>" >> fonts.conf
2024-05-02 00:46:19 +00:00
2024-05-13 21:24:10 +00:00
mkdir -p $out
fc-cache -sv
2024-05-02 00:46:19 +00:00
2024-05-13 21:24:10 +00:00
# This is not a cache dir in the normal sense -- it won't be automatically
# recreated.
rm -f "$out/CACHEDIR.TAG"
''