mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
28 lines
700 B
Nix
28 lines
700 B
Nix
{ runCommand, lib, writeText, fontconfig, fontDirectories }:
|
|
|
|
runCommand "fc-cache"
|
|
rec {
|
|
buildInputs = [ fontconfig.bin ];
|
|
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>
|
|
<include>${fontconfig.out}/etc/fonts/fonts.conf</include>
|
|
<cachedir>$out</cachedir>
|
|
EOF
|
|
cat "$fontDirsPath" >> fonts.conf
|
|
echo "</fontconfig>" >> fonts.conf
|
|
|
|
mkdir -p $out
|
|
fc-cache -sv
|
|
''
|