64c756d50d
new font version; old link answers with 404
25 lines
649 B
Nix
25 lines
649 B
Nix
{stdenv, fetchzip}:
|
|
|
|
let
|
|
version = "11.0.0";
|
|
in fetchzip {
|
|
name = "babelstone-han-${version}";
|
|
|
|
url = http://www.babelstone.co.uk/Fonts/3902/BabelStoneHan.zip;
|
|
postFetch = ''
|
|
mkdir -p $out/share/fonts/truetype
|
|
unzip $downloadedFile '*.ttf' -d $out/share/fonts/truetype
|
|
'';
|
|
sha256 = "1w3v69lacsy0nha20rkbs6f0dskf5xm6p250qx4a1m69d4a1gx7v";
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Unicode CJK font with over 32600 Han characters";
|
|
homepage = http://www.babelstone.co.uk/Fonts/Han.html;
|
|
|
|
license = licenses.free;
|
|
platforms = platforms.all;
|
|
hydraPlatforms = [];
|
|
maintainers = [ maintainers.volth ];
|
|
};
|
|
}
|