summary refs log blame commit diff
path: root/pkgs/data/fonts/ipaexfont/default.nix
blob: 4d7e2fa380e0681c653282a13f759fad2692fb28 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                  
 
          

                            
                                                                                                             
 


                                                                

     

                                                                  
                    












                                                                           
{ lib, fetchzip }:

fetchzip {
  name = "ipaexfont-003.01";

  url = "http://web.archive.org/web/20160616003021/http://dl.ipafont.ipa.go.jp/IPAexfont/IPAexfont00301.zip";

  postFetch = ''
    mkdir -p $out/share/fonts
    unzip -j $downloadedFile \*.ttf -d $out/share/fonts/opentype
  '';

  sha256 = "02a6sj990cnig5lq0m54nmbmfkr3s57jpxl9fiyzrjmigvd1qmhj";

  meta = with lib; {
    description = "Japanese font package with Mincho and Gothic fonts";
    longDescription = ''
      IPAex font is a Japanese font developed by the Information-technology
      Promotion Agency of Japan. It provides both Mincho and Gothic fonts,
      suitable for both display and printing.

      This is the successor to the IPA fonts.
    '';
    homepage = http://ipafont.ipa.go.jp/;
    license = licenses.ipa;
    maintainers = with maintainers; [ gebner ];
  };
}