mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 13:37:21 +03:00
9217c7995c
This revertse26188938c
and77487fe661
CC #3515.
15 lines
412 B
Nix
15 lines
412 B
Nix
{ runCommand, libxslt, fontconfig, fontDirectories }:
|
|
|
|
runCommand "fonts.conf"
|
|
{
|
|
buildInputs = [ libxslt fontconfig ];
|
|
inherit fontDirectories;
|
|
}
|
|
''
|
|
xsltproc --stringparam fontDirectories "$fontDirectories" \
|
|
--stringparam fontconfig "${fontconfig}" \
|
|
--path ${fontconfig}/share/xml/fontconfig \
|
|
${./make-fonts-conf.xsl} ${fontconfig}/etc/fonts/fonts.conf \
|
|
> $out
|
|
''
|