nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ stdenvNoCC, lib, fetchzip }:
2
3stdenvNoCC.mkDerivation rec {
4 pname = "edusong";
5 version = "1.0"; # The upstream doesn't provide the version
6
7 src = fetchzip {
8 name = "${pname}-${version}";
9 url =
10 "http://language.moe.gov.tw/001/Upload/Files/site_content/M0001/eduSong_Unicode.zip";
11 sha256 = "1b74wj9hdzlnrvldwlkh21sfhqxwh9qghf1k0fv66zs6n48vb0d4";
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 Song Font, a Chinese font by the Ministry of Education, ROC (Taiwan)";
22 longDescription = ''
23 The MOE Standard Song Font is a Chinese Song font provided by
24 the Midistry of Education, Republic of China (Taiwan).
25 Song or Ming is a category of CKJ typefaces in print.
26 '';
27 homepage =
28 "http://language.moe.gov.tw/result.aspx?classify_sn=23&subclassify_sn=436&content_sn=48";
29 license = lib.licenses.cc-by-nd-30;
30 maintainers = with lib.maintainers; [ ShamrockLee ];
31 };
32}