27 lines
874 B
Nix
27 lines
874 B
Nix
# when changing this expression convert it from 'fetchzip' to 'stdenvNoCC.mkDerivation'
|
|
{ lib, fetchzip }:
|
|
|
|
(fetchzip {
|
|
name = "ipafont-003.03";
|
|
|
|
url = "https://moji.or.jp/wp-content/ipafont/IPAfont/IPAfont00303.zip";
|
|
|
|
sha256 = "0lrjd0bfy36f9j85m12afg5nvr5id3sig2nmzs5qifskbd7mqv9h";
|
|
|
|
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 ];
|
|
};
|
|
}).overrideAttrs (_: {
|
|
postFetch = ''
|
|
mkdir -p $out/share/fonts
|
|
unzip -j $downloadedFile \*.ttf -d $out/share/fonts/opentype
|
|
'';
|
|
})
|