mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 22:50:49 +00:00
Merge pull request #79665 from emilazy/babelstone-han-13.0.3
babelstone-han: 12.1.7 -> 13.0.3
This commit is contained in:
commit
fd27f46cb3
|
@ -1,16 +1,17 @@
|
||||||
{ lib, fetchzip }:
|
{ lib, fetchzip }:
|
||||||
|
|
||||||
let
|
let
|
||||||
version = "12.1.7";
|
version = "13.0.3";
|
||||||
in fetchzip {
|
in fetchzip {
|
||||||
name = "babelstone-han-${version}";
|
name = "babelstone-han-${version}";
|
||||||
|
|
||||||
url = https://www.babelstone.co.uk/Fonts/Download/BabelStoneHan.zip;
|
# upstream download links are unversioned, so hash changes
|
||||||
|
url = https://web.archive.org/web/20200210125314/https://www.babelstone.co.uk/Fonts/Download/BabelStoneHan.zip;
|
||||||
postFetch = ''
|
postFetch = ''
|
||||||
mkdir -p $out/share/fonts/truetype
|
mkdir -p $out/share/fonts/truetype
|
||||||
unzip $downloadedFile '*.ttf' -d $out/share/fonts/truetype
|
unzip $downloadedFile '*.ttf' -d $out/share/fonts/truetype
|
||||||
'';
|
'';
|
||||||
sha256 = "07liv0lmk28ybxccf91gp2wmc17pk3fcshixpj0jx069b64zwf1v";
|
sha256 = "018isk3hbzsihzrxavgjbn485ngzvlm96npqx9y7zpkxsssslc4w";
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Unicode CJK font with over 36000 Han characters";
|
description = "Unicode CJK font with over 36000 Han characters";
|
||||||
|
@ -18,7 +19,6 @@ in fetchzip {
|
||||||
|
|
||||||
license = licenses.free;
|
license = licenses.free;
|
||||||
platforms = platforms.all;
|
platforms = platforms.all;
|
||||||
hydraPlatforms = [];
|
maintainers = with maintainers; [ volth emily ];
|
||||||
maintainers = [ maintainers.volth ];
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue