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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
802 B
Nix
Raw Normal View History

{ lib, stdenvNoCC, fetchzip }:
2017-02-05 05:46:34 +00:00
stdenvNoCC.mkDerivation {
pname = "babelstone-han";
2020-02-10 12:55:39 +00:00
version = "13.0.3";
2017-02-05 05:46:34 +00:00
src = fetchzip {
# upstream download links are unversioned, so hash changes
url = "https://web.archive.org/web/20200210125314/https://www.babelstone.co.uk/Fonts/Download/BabelStoneHan.zip";
hash = "sha256-LLhNtHu2hh5DY2XVSrLuVzzR6OtMdSSHetyA0k1IFs0=";
};
installPhase = ''
runHook preInstall
mkdir -p $out/share/fonts/truetype
cp *.ttf $out/share/fonts/truetype
runHook postInstall
'';
2017-02-05 05:46:34 +00: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 05:46:34 +00:00
license = licenses.free;
platforms = platforms.all;
maintainers = with maintainers; [ emily ];
2017-02-05 05:46:34 +00:00
};
}