nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ stdenvNoCC, lib, fetchzip }:
2
3stdenvNoCC.mkDerivation rec {
4 pname = "edukai";
5 version = "4.0";
6
7 src = fetchzip {
8 name = "${pname}-${version}";
9 url =
10 "http://language.moe.gov.tw/001/Upload/Files/site_content/M0001/edukai-4.0.zip";
11 sha256 = "10m9srvbazvg9gc43943dc89rjzcfc8mm4lx9gb5hnplrn22zrcn";
12 };
13
14 installPhase = ''
15 mkdir -p $out/share/fonts/
16 mv *.ttf $out/share/fonts/
17 '';
18
19 meta = {
20 description =
21 "The MOE Standard Kai Font, a Chinese font by the Ministry of Education, ROC (Taiwan)";
22 longDescription = ''
23 The MOE Standard Kai Font is a kai (regular srcipt) font
24 provided by
25 the Midistry of Education, Republic of China (Taiwan).
26 It currently includes 13,076 Chinese characters.
27 '';
28 homepage =
29 "http://language.moe.gov.tw/result.aspx?classify_sn=23&subclassify_sn=436&content_sn=47";
30 license = lib.licenses.cc-by-nd-30;
31 maintainers = with lib.maintainers; [ ShamrockLee ];
32 };
33}