1
1
mirror of https://github.com/LnL7/nix-darwin.git synced 2024-08-16 16:10:39 +03:00
nix-darwin/tests/fonts.nix

21 lines
414 B
Nix
Raw Permalink Normal View History

2018-09-30 20:42:00 +03:00
{ config, pkgs, ... }:
let
font = pkgs.runCommand "font-0.0.0" {} ''
mkdir -p $out
touch $out/Font.ttf
'';
in
{
fonts.packages = [ font ];
2018-09-30 20:42:00 +03:00
test = ''
echo "checking fonts in /Library/Fonts/Nix Fonts" >&2
test -e "${config.out}/Library/Fonts/Nix Fonts"/*/Font.ttf
echo "checking activation of fonts in /activate" >&2
grep '/Library/Fonts/Nix Fonts' ${config.out}/activate
2018-09-30 20:42:00 +03:00
'';
}