nixpkgs/pkgs/data/fonts/babelstone-han/default.nix

25 lines
647 B
Nix
Raw Normal View History

{ lib, fetchzip }:
2017-02-05 06:46:34 +01:00
let
2019-10-30 19:11:46 +01:00
version = "12.1.7";
in fetchzip {
2017-02-05 06:46:34 +01:00
name = "babelstone-han-${version}";
url = https://www.babelstone.co.uk/Fonts/Download/BabelStoneHan.zip;
postFetch = ''
2017-02-05 06:46:34 +01:00
mkdir -p $out/share/fonts/truetype
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
meta = with lib; {
description = "Unicode CJK font with over 36000 Han characters";
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 ];
};
}