mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-08 22:57:42 +03:00
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
@ -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 New Issue
Block a user