1
0
Fork 0
mirror of https://github.com/LnL7/nix-darwin.git synced 2025-03-13 20:30:02 +00:00
nix-darwin/tests/fonts.nix

15 lines
360 B
Nix
Raw Normal View History

2018-09-30 19:42:00 +02:00
{ config, pkgs, ... }:
let
fonts = pkgs.runCommand "fonts-0.0.0" {} "mkdir -p $out";
in {
fonts.fonts = [ pkgs.dejavu_fonts ];
test = ''
echo checking installed fonts >&2
grep -o "fontrestore default -n" ${config.out}/activate
2018-10-04 13:03:21 +02:00
grep -o "/share/fonts/truetype/DejaVuSans.ttf' '/Library/Fonts/DejaVuSans.ttf'" ${config.out}/activate
2018-09-30 19:42:00 +02:00
'';
}