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