_0xproto: add No-Ligatures variant

This variant was introduced in v2.400
This commit is contained in:
Kenichi Kamiya
2025-08-28 03:48:17 +09:00
parent 99f0d4ead3
commit 6fae09968f
+4 -2
View File
@@ -18,10 +18,12 @@ stdenvNoCC.mkDerivation rec {
stripRoot = false;
};
# Exclude files in ZxProto/. The fonts are identical, with only the filenames changed.:
# https://github.com/0xType/0xProto/pull/112
installPhase = ''
runHook preInstall
install -Dm644 -t $out/share/fonts/opentype/ *.otf
install -Dm644 -t $out/share/fonts/truetype/ *.ttf
install -Dm644 -t $out/share/fonts/opentype/ *.otf ./No-Ligatures/*-NL.otf
install -Dm644 -t $out/share/fonts/truetype/ *.ttf ./No-Ligatures/*-NL.ttf
runHook postInstall
'';