2019-05-12 18:55:32 -07:00
|
|
|
{ lib, fetchzip }:
|
2015-03-25 09:53:26 -07:00
|
|
|
|
2017-08-10 12:43:49 -07:00
|
|
|
let
|
2019-05-25 18:35:29 -07:00
|
|
|
version = "063a";
|
2019-08-13 14:52:01 -07:00
|
|
|
in fetchzip {
|
2017-08-10 12:43:49 -07:00
|
|
|
name = "mplus-${version}";
|
2015-03-25 09:53:26 -07:00
|
|
|
|
2019-06-08 21:25:47 -07:00
|
|
|
url = "mirror://osdn/mplus-fonts/62344/mplus-TESTFLIGHT-${version}.tar.xz";
|
2015-03-25 09:53:26 -07:00
|
|
|
|
2017-08-10 12:43:49 -07:00
|
|
|
postFetch = ''
|
|
|
|
tar -xJf $downloadedFile --strip-components=1
|
2015-03-25 09:53:26 -07:00
|
|
|
mkdir -p $out/share/fonts/truetype
|
|
|
|
cp *.ttf $out/share/fonts/truetype
|
|
|
|
'';
|
|
|
|
|
2019-05-25 18:35:29 -07:00
|
|
|
sha256 = "1khbkch2r96ppifc93bmy1v047pgciyhfmcjb98ggncp5ix885xz";
|
2017-08-10 12:43:49 -07:00
|
|
|
|
2019-05-12 18:55:32 -07:00
|
|
|
meta = with lib; {
|
2015-03-25 09:53:26 -07:00
|
|
|
description = "M+ Outline Fonts";
|
2019-06-08 21:48:34 -07:00
|
|
|
homepage = "https://mplus-fonts.osdn.jp/about-en.html";
|
2015-03-25 09:53:26 -07:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ henrytill ];
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|