Merge pull request #51601 from eburimu/fix/cross-make-fonts-cache-and-conf
fontconfig: fix cross make-fonts-cache & make-fonts-config
This commit is contained in:
commit
12f4e081cb
2 changed files with 3 additions and 3 deletions
|
@ -1,8 +1,8 @@
|
|||
{ runCommand, lib, fontconfig, fontDirectories }:
|
||||
{ runCommand, lib, fontconfig, fontDirectories, buildPackages }:
|
||||
|
||||
runCommand "fc-cache"
|
||||
rec {
|
||||
buildInputs = [ fontconfig.bin ];
|
||||
nativeBuildInputs = [ buildPackages.fontconfig.bin ];
|
||||
preferLocalBuild = true;
|
||||
passAsFile = [ "fontDirs" ];
|
||||
fontDirs = ''
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
runCommand "fonts.conf"
|
||||
{
|
||||
buildInputs = [ libxslt fontconfig ];
|
||||
nativeBuildInputs = [ libxslt fontconfig ];
|
||||
# Add a default font for non-nixos systems, <1MB and in nixos defaults.
|
||||
fontDirectories = fontDirectories ++ [ dejavu_fonts.minimal ];
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue