mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
14 lines
348 B
Nix
14 lines
348 B
Nix
|
{runCommand, libxslt, fontconfig, fontDirectories}:
|
||
|
|
||
|
runCommand "fonts.conf"
|
||
|
{
|
||
|
buildInputs = [libxslt];
|
||
|
inherit fontDirectories;
|
||
|
}
|
||
|
''
|
||
|
xsltproc --stringparam fontDirectories "$fontDirectories" \
|
||
|
--stringparam fontconfig "${fontconfig}" \
|
||
|
${./make-fonts-conf.xsl} ${fontconfig}/etc/fonts/fonts.conf \
|
||
|
> $out
|
||
|
''
|