Merge pull request #153737 from wegank/hannom

authored by Sandro and committed by GitHub 85459d00 6d6ec768

+41
+6
maintainers/maintainer-list.nix
··· 12758 email = "kirill.wedens@gmail.com"; 12759 name = "wedens"; 12760 }; 12761 weihua = { 12762 email = "luwh364@gmail.com"; 12763 github = "weihua-lu";
··· 12758 email = "kirill.wedens@gmail.com"; 12759 name = "wedens"; 12760 }; 12761 + wegank = { 12762 + name = "Weijia Wang"; 12763 + email = "contact@weijia.wang"; 12764 + github = "wegank"; 12765 + githubId = 9713184; 12766 + }; 12767 weihua = { 12768 email = "luwh364@gmail.com"; 12769 github = "weihua-lu";
+33
pkgs/data/fonts/hannom/default.nix
···
··· 1 + { lib, fetchzip }: 2 + 3 + let 4 + version = "2005"; 5 + in fetchzip { 6 + name = "hannom-${version}"; 7 + 8 + url = "mirror://sourceforge/vietunicode/hannom/hannom%20v${version}/hannomH.zip"; 9 + 10 + postFetch = '' 11 + mkdir -p $out/share/fonts 12 + unzip -j $downloadedFile \*.ttf -d $out/share/fonts/truetype 13 + ''; 14 + 15 + sha256 = "sha256-zOYJxEHl4KM0ncVQDBs9+e3z8DxzF2ef3pRj0OVSuUo="; 16 + 17 + meta = with lib; { 18 + description = "UNICODE Han Nom Font Set"; 19 + homepage = "http://vietunicode.sourceforge.net/fonts/fonts_hannom.html"; 20 + longDescription = '' 21 + The true type fonts HAN NOM A and HAN NOM B have been developed by Chan 22 + Nguyen Do Quoc Bao (Germany), To Minh Tam (USA) and Ni sinh Thien Vien Vien 23 + Chieu (Vietnam). Their work got started in 2001, completed in 2003, and 24 + publicized in 2005. These two true type fonts can be used with WIN-2000 or 25 + WIN-XP and Office XP or Office 2003 to display Han and Nom characters with 26 + code points by the Unicode Standard. Two sets of true type fonts are 27 + available with high and low resolutions. 28 + ''; 29 + license = licenses.unfree; 30 + maintainers = with maintainers; [ wegank ]; 31 + platforms = platforms.all; 32 + }; 33 + }
+2
pkgs/top-level/all-packages.nix
··· 23495 23496 hicolor-icon-theme = callPackage ../data/icons/hicolor-icon-theme { }; 23497 23498 hanazono = callPackage ../data/fonts/hanazono { }; 23499 23500 hermit = callPackage ../data/fonts/hermit { };
··· 23495 23496 hicolor-icon-theme = callPackage ../data/icons/hicolor-icon-theme { }; 23497 23498 + hannom = callPackage ../data/fonts/hannom { }; 23499 + 23500 hanazono = callPackage ../data/fonts/hanazono { }; 23501 23502 hermit = callPackage ../data/fonts/hermit { };