From 6d0cf2d8420824af56a00eecfdc48f719c2d3196 Mon Sep 17 00:00:00 2001 From: Piotr Limanowski Date: Sun, 30 Sep 2018 19:42:00 +0200 Subject: [PATCH] add tests for fonts --- modules/fonts/default.nix | 25 +++++++++++-------------- release.nix | 1 + tests/fonts.nix | 14 ++++++++++++++ 3 files changed, 26 insertions(+), 14 deletions(-) create mode 100644 tests/fonts.nix diff --git a/modules/fonts/default.nix b/modules/fonts/default.nix index c330d3c4..eecef972 100644 --- a/modules/fonts/default.nix +++ b/modules/fonts/default.nix @@ -4,16 +4,11 @@ with lib; let cfg = config.fonts; + fontFiles = env: with builtins; + filter (n: match ".*\\.ttf" n != null) (attrNames (readDir "${env}/share/fonts/truetype/")); in { options = { fonts = { - enableFontDir = mkOption { - default = false; - description = '' - Whether to create a directory with links to all fonts in - /run/current-system/sw/share/fonts. - ''; - }; fonts = mkOption { type = types.listOf types.path; default = []; @@ -27,15 +22,17 @@ in { system.build.fonts = pkgs.buildEnv { name = "system-fonts"; paths = cfg.fonts; - pathsToLink = "/share/fonts/truetype"; + pathsToLink = "/share/fonts"; }; - system.activationScripts.fonts.text = optionalString cfg.enableFontDir '' + system.activationScripts.fonts.text = '' # Set up fonts. - echo "setting up fonts..." >&2 - fontrestore default -n 2>&1 | grep -o '/Library/Fonts/.*' | tr '\n' '\0' | xargs -0 sudo rm - /bin/ln -hf ${config.system.build.fonts}/share/fonts/truetype/* /Library/Fonts/ - ''; - environment.pathsToLink = [ "/share/fonts/truetype" ]; + echo "resetting fonts..." >&2 + fontrestore default -n 2>&1 | grep -o '/Library/Fonts/.*' | tr '\n' '\0' | xargs -0 rm || true + echo "updating fonts..." >&2 + ${concatMapStrings (font: "ln -fn '${config.system.build.fonts}/share/fonts/truetype/${font}' '/Library/Fonts/${font}'\n") + (fontFiles config.system.build.fonts)} + ''; + environment.pathsToLink = [ "/share/fonts" ]; }; } diff --git a/release.nix b/release.nix index e944c8bf..6721a52a 100644 --- a/release.nix +++ b/release.nix @@ -114,6 +114,7 @@ let tests.system-path-fish = makeTest ./tests/system-path-fish.nix; tests.system-shells = makeTest ./tests/system-shells.nix; tests.users-groups = makeTest ./tests/users-groups.nix; + tests.fonts = makeTest ./tests/fonts.nix; } // (mapTestOn (packagePlatforms packageSet)); diff --git a/tests/fonts.nix b/tests/fonts.nix new file mode 100644 index 00000000..f92d7971 --- /dev/null +++ b/tests/fonts.nix @@ -0,0 +1,14 @@ +{ 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 + grep -o "/share/fonts/truetype/DejaVuSans.ttf /Library/Fonts/DejaVuSans.ttf" ${config.out}/activate + ''; +} +