2025-06-18 13:30:15 +00:00

32 lines
782 B
Nix

{
stdenvNoCC,
fetchurl,
lib,
}:
stdenvNoCC.mkDerivation (finalAttrs: {
pname = "lxgw-wenkai-screen";
version = "1.520";
src = fetchurl {
url = "https://github.com/lxgw/LxgwWenKai-Screen/releases/download/v${finalAttrs.version}/LXGWWenKaiScreen.ttf";
hash = "sha256-AxTlH8AZBu66WNbjv45cAuFRrItUeElEvyorEkXKQe4=";
};
dontUnpack = true;
installPhase = ''
runHook preInstall
install -Dm644 "$src" "$out/share/fonts/truetype/LXGWWenKaiScreen.ttf"
runHook postInstall
'';
meta = {
description = "LXGW WenKai font optimized for screen reading";
homepage = "https://github.com/lxgw/LxgwWenKai-Screen";
license = lib.licenses.ofl;
platforms = lib.platforms.all;
maintainers = with lib.maintainers; [ lebensterben ];
};
})