nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at netboot-syslinux-multiplatform 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 = "0b4kjdk0h0hx446swi0wzawia0mf16qh9b6v4h4nqg8qx0p2sd3c"; 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}