2019-05-13 02:55:32 +01:00
|
|
|
{ lib, fetchzip }:
|
2017-02-05 05:46:34 +00:00
|
|
|
|
2017-08-10 21:26:24 +01:00
|
|
|
let
|
2019-05-13 02:55:32 +01:00
|
|
|
version = "12.1.4";
|
2017-08-10 21:26:24 +01:00
|
|
|
in fetchzip {
|
2017-02-05 05:46:34 +00:00
|
|
|
name = "babelstone-han-${version}";
|
|
|
|
|
2018-04-16 17:49:02 +01:00
|
|
|
url = http://www.babelstone.co.uk/Fonts/Download/BabelStoneHan.zip;
|
2017-08-10 21:26:24 +01:00
|
|
|
postFetch = ''
|
2017-02-05 05:46:34 +00:00
|
|
|
mkdir -p $out/share/fonts/truetype
|
2017-08-10 21:26:24 +01:00
|
|
|
unzip $downloadedFile '*.ttf' -d $out/share/fonts/truetype
|
2017-02-05 05:46:34 +00:00
|
|
|
'';
|
2019-05-13 02:55:32 +01:00
|
|
|
sha256 = "1fypwk2i87jfrckvxg9wz4x84z7c6ifgzrjb8fylhac50lzi6kni";
|
2017-02-05 05:46:34 +00:00
|
|
|
|
2019-05-13 02:55:32 +01:00
|
|
|
meta = with lib; {
|
2018-04-16 17:49:02 +01:00
|
|
|
description = "Unicode CJK font with over 36000 Han characters";
|
2017-02-05 05:46:34 +00:00
|
|
|
homepage = http://www.babelstone.co.uk/Fonts/Han.html;
|
|
|
|
|
|
|
|
license = licenses.free;
|
|
|
|
platforms = platforms.all;
|
|
|
|
hydraPlatforms = [];
|
|
|
|
maintainers = [ maintainers.volth ];
|
|
|
|
};
|
|
|
|
}
|