- Update nixpkgs (Feb 27), home-manager, microvm, nix-index-database, claude-code-nix, dailybot - Remove navidrome service, nginx proxy, dashy entry, and gatus monitor - Add noto-fonts-subset patch for libreoffice/collabora (noto-fonts 2026.02.01 switched from variable to static font filenames) - Add incus-lts writableTmpDirAsHomeHook overlay for sandbox HOME fix - Add samba4Full overlay to disable CephFS (ceph pinned to python3.11)
17 lines
713 B
Diff
17 lines
713 B
Diff
Fix notoSubset glob for noto-fonts >= 2026.02.01.
|
|
|
|
noto-fonts switched from variable fonts (NotoSansArabic[wdth,wght].ttf)
|
|
to static fonts (NotoSansArabic.ttf). The old glob pattern only matched
|
|
files with brackets in the name, causing the cp to fail.
|
|
|
|
--- a/pkgs/applications/office/libreoffice/default.nix
|
|
+++ b/pkgs/applications/office/libreoffice/default.nix
|
|
@@ -191,7 +191,7 @@
|
|
runCommand "noto-fonts-subset" { } ''
|
|
mkdir -p "$out/share/fonts/noto/"
|
|
${concatMapStrings (x: ''
|
|
- cp "${noto-fonts}/share/fonts/noto/NotoSans${x}["*.[ot]tf "$out/share/fonts/noto/"
|
|
+ cp "${noto-fonts}/share/fonts/noto/NotoSans${x}"*.[ot]tf "$out/share/fonts/noto/"
|
|
'') suffixes}
|
|
'';
|