9c6ee729d6
GitOrigin-RevId: 6cee3b5893090b0f5f0a06b4cf42ca4e60e5d222
32 lines
741 B
Nix
32 lines
741 B
Nix
{ lib
|
|
, fetchurl
|
|
, stdenvNoCC
|
|
}:
|
|
|
|
stdenvNoCC.mkDerivation rec {
|
|
pname = "lxgw-neoxihei";
|
|
version = "1.102.1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/lxgw/LxgwNeoXiHei/releases/download/v${version}/LXGWNeoXiHei.ttf";
|
|
hash = "sha256-prEyymKABhu7/jdiyUyZ4xb6rrYmo91Jt462qQKV9/0=";
|
|
};
|
|
|
|
dontUnpack = true;
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
install -Dm644 $src $out/share/fonts/truetype/LXGWNeoXiHei.ttf
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "A Simplified Chinese sans-serif font derived from IPAex Gothic";
|
|
homepage = "https://github.com/lxgw/LxgwNeoXiHei";
|
|
license = licenses.ipa;
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ zendo ];
|
|
};
|
|
}
|