lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 22.05-pre 36 lines 1.1 kB view raw
1{ stdenvNoCC, lib, fetchzip }: 2 3stdenvNoCC.mkDerivation rec { 4 pname = "eduli"; 5 version = "3.0"; 6 7 src = fetchzip { 8 name = "${pname}-${version}"; 9 url = 10 "http://language.moe.gov.tw/001/Upload/Files/site_content/M0001/MoeLI-3.0.zip"; 11 sha256 = "0vpmm2qb429npng0aqkafwgs7cjibq8a3f7bbn9hysbm2lndwxwd"; 12 }; 13 14 installPhase = '' 15 mkdir -p $out/share/fonts/ 16 for name in *.ttf; do 17 mv "$name" "$out/share/fonts/$(echo $name | sed -r 's/(.*)\(.*\)\.ttf/\1.ttf/')" 18 done 19 ''; 20 21 meta = { 22 description = 23 "The MOE Li Font, a clerical Chinese font by the Ministry of Education, ROC (Taiwan)"; 24 longDescription = '' 25 The MOE Li Font is a li (clerical srcipt) font 26 provided by 27 the Midistry of Education, Republic of China (Taiwan). 28 It currently includes 4,808 Chinese characters. 29 The clerical script (lishu) is an archaic style of Chinese calligraphy. 30 ''; 31 homepage = 32 "http://language.moe.gov.tw/result.aspx?classify_sn=23&subclassify_sn=436&content_sn=49"; 33 license = lib.licenses.cc-by-nd-30; 34 maintainers = with lib.maintainers; [ ShamrockLee ]; 35 }; 36}