summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorShamrock Lee <44064051+ShamrockLee@users.noreply.github.com>2020-07-29 00:49:09 +0800
committerShamrock Lee <44064051+ShamrockLee@users.noreply.github.com>2020-08-01 08:15:44 +0800
commit8ca49923c6be434fae55e6e2637c757eefdd84b5 (patch)
treef9b4a9be65e4e501f9d9e29d197db2f8efc527cf
parent4102707f9a462e67dd31c3c8a647901d4894f9b8 (diff)
edusong: Init at 1.0
Add `edusong` (MOE Standard Song Font) If approved, users will be able to install the Standard Chinese Song Font provided by the Ministry of Education, Republic of China (Taiwan).
-rw-r--r--pkgs/data/fonts/edusong/default.nix32
-rw-r--r--pkgs/top-level/all-packages.nix2
2 files changed, 34 insertions, 0 deletions
diff --git a/pkgs/data/fonts/edusong/default.nix b/pkgs/data/fonts/edusong/default.nix
new file mode 100644
index 000000000000..bf7d39aa20c5
--- /dev/null
+++ b/pkgs/data/fonts/edusong/default.nix
@@ -0,0 +1,32 @@
+{ stdenvNoCC, lib, fetchzip }:
+
+stdenvNoCC.mkDerivation rec {
+ pname = "edusong";
+ version = "1.0"; # The upstream doesn't provide the version
+
+ src = fetchzip {
+ name = "${pname}-${version}";
+ url =
+ "http://language.moe.gov.tw/001/Upload/Files/site_content/M0001/eduSong_Unicode.zip";
+ sha256 = "1b74wj9hdzlnrvldwlkh21sfhqxwh9qghf1k0fv66zs6n48vb0d4";
+ };
+
+ installPhase = ''
+ mkdir -p $out/share/fonts/
+ mv *.ttf $out/share/fonts/
+ '';
+
+ meta = {
+ description =
+ "The MOE Standard Song Font, a Chinese font by the Ministry of Education, ROC (Taiwan)";
+ longDescription = ''
+ The MOE Standard Song Font is a Chinese Song font provided by
+ the Midistry of Education, Republic of China (Taiwan).
+ Song or Ming is a category of CKJ typefaces in print.
+ '';
+ homepage =
+ "http://language.moe.gov.tw/result.aspx?classify_sn=23&subclassify_sn=436&content_sn=48";
+ license = lib.licenses.cc-by-nd-30;
+ maintainers = with lib.maintainers; [ ShamrockLee ];
+ };
+}
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 5b16cf22924d..1cc62762eb18 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -18298,6 +18298,8 @@ in
edukai = callPackage ../data/fonts/edukai { };
+ edusong = callPackage ../data/fonts/edusong { };
+
elliptic_curves = callPackage ../data/misc/elliptic_curves { };
equilux-theme = callPackage ../data/themes/equilux-theme { };