From ac1defca9d81849f1a61d6cc7476f99939a4aa7c Mon Sep 17 00:00:00 2001 From: Vika Date: Thu, 2 Jan 2025 14:19:24 +0300 Subject: Don't exclude fonts from Nix builds Change-Id: I1b4e56874b86151c9b76495f3a1f63ba8bd527b3 --- kittybox.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kittybox.nix b/kittybox.nix index de14cb7..b078c93 100644 --- a/kittybox.nix +++ b/kittybox.nix @@ -9,7 +9,7 @@ assert usePostgres -> postgresql != null && postgresqlTestHook != null; let featureMatrix = features: lib.concatStringsSep " " (lib.attrNames (lib.filterAttrs (k: v: v) features)); - suffixes = [ ".sql" ".ts" ".css" ".html" ".json" ]; + suffixes = [ ".sql" ".ts" ".css" ".html" ".json" ".woff2" ]; suffixFilter = suffixes: name: type: let base = baseNameOf (toString name); in type == "directory" || lib.any (ext: lib.hasSuffix ext base) suffixes; -- cgit 1.4.1