about summary refs log tree commit diff
path: root/pkgs/data/fonts/ipaexfont/default.nix
blob: ab163dcca9ffebd5919b9542b70432cb32f6c3e6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{ stdenv, fetchurl, unzip }:

stdenv.mkDerivation rec {
  name = "ipaexfont-003.01";

  src = fetchurl {
    url = "http://dl.ipafont.ipa.go.jp/IPAexfont/IPAexfont00301.zip";
    sha256 = "0nmfyh10rzkvp0qmrla0dahkmmxq47678y4v8fdm8fpdzmf0kpn7";
  };

  buildInputs = [ unzip ];

  installPhase = ''
    mkdir -p $out/share/fonts/opentype/
    cp *.ttf $out/share/fonts/opentype/
  '';

  meta = with stdenv.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 ];
  };
}