mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-10 03:23:29 +03:00
nixosTests.fontconfig-default-fonts: use Gentium font
As GentiumPlus will probably never be updated further by upstream.
This commit is contained in:
parent
8aad240124
commit
9dd340e308
1 changed files with 3 additions and 3 deletions
|
@ -15,10 +15,10 @@
|
||||||
cantarell-fonts
|
cantarell-fonts
|
||||||
twitter-color-emoji
|
twitter-color-emoji
|
||||||
source-code-pro
|
source-code-pro
|
||||||
gentium-plus
|
gentium
|
||||||
];
|
];
|
||||||
fonts.fontconfig.defaultFonts = {
|
fonts.fontconfig.defaultFonts = {
|
||||||
serif = [ "Gentium Plus" ];
|
serif = [ "Gentium" ];
|
||||||
sansSerif = [ "Cantarell" ];
|
sansSerif = [ "Cantarell" ];
|
||||||
monospace = [ "Source Code Pro" ];
|
monospace = [ "Source Code Pro" ];
|
||||||
emoji = [ "Twitter Color Emoji" ];
|
emoji = [ "Twitter Color Emoji" ];
|
||||||
|
@ -26,7 +26,7 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
testScript = ''
|
testScript = ''
|
||||||
machine.succeed("fc-match serif | grep '\"Gentium Plus\"'")
|
machine.succeed("fc-match serif | grep '\"Gentium\"'")
|
||||||
machine.succeed("fc-match sans-serif | grep '\"Cantarell\"'")
|
machine.succeed("fc-match sans-serif | grep '\"Cantarell\"'")
|
||||||
machine.succeed("fc-match monospace | grep '\"Source Code Pro\"'")
|
machine.succeed("fc-match monospace | grep '\"Source Code Pro\"'")
|
||||||
machine.succeed("fc-match emoji | grep '\"Twitter Color Emoji\"'")
|
machine.succeed("fc-match emoji | grep '\"Twitter Color Emoji\"'")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue