edukai: 5.0 -> 5.1

This commit is contained in:
Edward
2026-04-10 14:40:35 +08:00
parent 8f7f5fe021
commit b6f4e83f66
+13 -11
View File
@@ -4,13 +4,13 @@
fetchzip,
}:
stdenvNoCC.mkDerivation rec {
stdenvNoCC.mkDerivation (finalAttrs: {
pname = "edukai";
version = "5.0";
version = "5.1";
src = fetchzip {
url = "https://language.moe.gov.tw/001/Upload/Files/site_content/M0001/edukai-${version}.zip";
sha256 = "sha256-3+w9n6GJQg9+HfHYukC7tlm4GVs8vEOO23hrLw6qjTY=";
url = "https://language.moe.gov.tw/001/Upload/Files/site_content/M0001/edukai-${finalAttrs.version}.zip";
sha256 = "sha256-B4TwTPX1dsq6rB4YunY6q2yx2OJhNhmn3an/dJwDPJc=";
};
installPhase = ''
@@ -21,13 +21,15 @@ stdenvNoCC.mkDerivation rec {
meta = {
description = "MOE Standard Kai Font, a Chinese font by the Ministry of Education, ROC (Taiwan)";
longDescription = ''
The MOE Standard Kai Font is a kai (regular srcipt) font
provided by
the Midistry of Education, Republic of China (Taiwan).
It currently includes 13,076 Chinese characters.
The MOE Standard Kai Font is a kai (regular script) font
provided by the Ministry of Education, Republic of China (Taiwan).
It currently includes 13,084 Chinese characters.
'';
homepage = "http://language.moe.gov.tw/result.aspx?classify_sn=23&subclassify_sn=436&content_sn=47";
homepage = "https://language.moe.gov.tw/001/Upload/Files/site_content/M0001/edukai.pdf";
license = lib.licenses.cc-by-nd-30;
maintainers = with lib.maintainers; [ ShamrockLee ];
maintainers = with lib.maintainers; [
ShamrockLee
winterec
];
};
}
})