From a171f0f221cf4d45c41fb7749aa975f0b3eabfcd Mon Sep 17 00:00:00 2001 From: mityu Date: Thu, 9 Jul 2026 14:35:21 +0900 Subject: [PATCH] satysfi: fix the ipaexfont is not bundled properly The ipaexfont package, which is an runtime depnedency of SATySFi, changed their font installation path at this commit: https://github.com/NixOS/nixpkgs/commit/af30ee15afe6cdb141d59f4827dba9b074666e93 This commit catches up with the change and make the ipaexfont be bundled with the SATySFi package properly again. --- pkgs/by-name/sa/satysfi/package.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/by-name/sa/satysfi/package.nix b/pkgs/by-name/sa/satysfi/package.nix index fe7d71c8b4be..f4887ec115fc 100644 --- a/pkgs/by-name/sa/satysfi/package.nix +++ b/pkgs/by-name/sa/satysfi/package.nix @@ -79,7 +79,7 @@ ocamlPackages.buildDunePackage { mkdir -p $out/share/satysfi/dist/fonts cp -r lib-satysfi/dist/ $out/share/satysfi/ cp -r \ - ${ipaexfont}/share/fonts/opentype/* \ + ${ipaexfont}/share/fonts/truetype/* \ ${lmodern}/share/fonts/opentype/public/lm/* \ ${lmmath}/share/fonts/opentype/latinmodern-math.otf \ ${junicode}/share/fonts/truetype/Junicode-{Bold,BoldItalic,Italic}.ttf \