2023-01-28 05:13:31 +00:00
|
|
|
{ lib, stdenvNoCC, fetchzip }:
|
2014-06-15 16:02:41 +00:00
|
|
|
|
2023-01-28 05:13:31 +00:00
|
|
|
stdenvNoCC.mkDerivation {
|
|
|
|
pname = "ipafont";
|
|
|
|
version = "003.03";
|
2014-06-15 16:02:41 +00:00
|
|
|
|
2023-01-28 05:13:31 +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
|
|
|
|
2023-01-28 05:13:31 +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.
|
|
|
|
'';
|
2022-02-06 11:09:10 +00:00
|
|
|
homepage = "https://moji.or.jp/ipafont/";
|
2019-05-13 01:55:32 +00:00
|
|
|
license = lib.licenses.ipa;
|
|
|
|
maintainers = [ lib.maintainers.auntie ];
|
2014-06-15 16:02:41 +00:00
|
|
|
};
|
2023-01-28 05:13:31 +00:00
|
|
|
}
|