infrastructure/patches/04-crabfit-karla.patch
Tom Hubrecht fca52e471e
All checks were successful
build configuration / build_web02 (push) Successful in 2m10s
build configuration / build_rescue01 (push) Successful in 2m13s
build configuration / build_compute01 (push) Successful in 2m19s
build configuration / build_vault01 (push) Successful in 2m20s
lint / check (push) Successful in 26s
build configuration / build_storage01 (push) Successful in 2m42s
build configuration / build_web01 (push) Successful in 2m48s
build configuration / push_to_cache (push) Successful in 4m11s
fix(crabfit): Don't depend on all of google-fonts
2024-07-29 14:31:02 +02:00

25 lines
770 B
Diff

diff --git a/pkgs/by-name/cr/crabfit-frontend/package.nix b/pkgs/by-name/cr/crabfit-frontend/package.nix
index 99d7be0fdeae..9f858e8a9a9e 100644
--- a/pkgs/by-name/cr/crabfit-frontend/package.nix
+++ b/pkgs/by-name/cr/crabfit-frontend/package.nix
@@ -8,7 +8,7 @@
nodejs,
yarn,
fixup_yarn_lock,
- google-fonts,
+ karla,
api_url ? "http://127.0.0.1:3000",
frontend_url ? "crab.fit",
}:
@@ -83,9 +83,7 @@ stdenv.mkDerivation (finalAttrs: {
patchShebangs node_modules
mkdir -p src/app/fonts
- cp "${
- google-fonts.override { fonts = [ "Karla" ]; }
- }/share/fonts/truetype/Karla[wght].ttf" src/app/fonts/karla.ttf
+ cp "${karla}/share/fonts/truetype/Karla-Regular.ttf" src/app/fonts/karla.ttf
runHook postConfigure
'';