nixpkgs/pkgs/data/fonts/ipafont/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
840 B
Nix
Raw Normal View History

{ lib, stdenvNoCC, fetchzip }:
2014-06-15 16:02:41 +00:00
stdenvNoCC.mkDerivation {
pname = "ipafont";
version = "003.03";
2014-06-15 16:02:41 +00:00
src = fetchzip {
url = "https://moji.or.jp/wp-content/ipafont/IPAfont/IPAfont00303.zip";
hash = "sha256-EzUNKuDNHr0NIXiqX09w99wtz1r2pZurR/izdgzTcAs=";
};
installPhase = ''
runHook preInstall
2014-06-15 16:02:41 +00:00
install -Dm644 *.ttf -t $out/share/fonts/opentype
runHook postInstall
'';
2014-06-15 16:02:41 +00:00
meta = {
description = "Japanese font package with Mincho and Gothic fonts";
longDescription = ''
IPAFont 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.
'';
homepage = "https://moji.or.jp/ipafont/";
license = lib.licenses.ipa;
maintainers = [ lib.maintainers.auntie ];
2014-06-15 16:02:41 +00:00
};
}