lol

_0xproto: add No-Ligatures variant

This variant was introduced in v2.400

+4 -2
+4 -2
pkgs/by-name/_0/_0xproto/package.nix
··· 18 stripRoot = false; 19 }; 20 21 installPhase = '' 22 runHook preInstall 23 - install -Dm644 -t $out/share/fonts/opentype/ *.otf 24 - install -Dm644 -t $out/share/fonts/truetype/ *.ttf 25 runHook postInstall 26 ''; 27
··· 18 stripRoot = false; 19 }; 20 21 + # Exclude files in ZxProto/. The fonts are identical, with only the filenames changed.: 22 + # https://github.com/0xType/0xProto/pull/112 23 installPhase = '' 24 runHook preInstall 25 + install -Dm644 -t $out/share/fonts/opentype/ *.otf ./No-Ligatures/*-NL.otf 26 + install -Dm644 -t $out/share/fonts/truetype/ *.ttf ./No-Ligatures/*-NL.ttf 27 runHook postInstall 28 ''; 29