mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-09 19:13:26 +03:00
62 lines
1.8 KiB
Nix
62 lines
1.8 KiB
Nix
{
|
|
lib,
|
|
stdenvNoCC,
|
|
fetchFromGitHub,
|
|
nixosTests,
|
|
gitUpdater,
|
|
static ? false, # whether to build the static version of the font
|
|
}:
|
|
|
|
stdenvNoCC.mkDerivation rec {
|
|
pname = "noto-fonts-cjk-serif";
|
|
version = "2.003";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "notofonts";
|
|
repo = "noto-cjk";
|
|
rev = "Serif${version}";
|
|
hash = "sha256-Bwuu64TAnOnqUgLlBsUw/jnv9emngqFBmVn6zEqySlc=";
|
|
sparseCheckout = [
|
|
"Serif/OTC"
|
|
"Serif/Variable/OTC"
|
|
];
|
|
};
|
|
|
|
installPhase =
|
|
let
|
|
font-path = if static then "Serif/OTC/*.ttc" else "Serif/Variable/OTC/*.otf.ttc";
|
|
in
|
|
''
|
|
install -m444 -Dt $out/share/fonts/opentype/noto-cjk ${font-path}
|
|
'';
|
|
|
|
passthru.tests.noto-fonts = nixosTests.noto-fonts;
|
|
|
|
passthru.updateScript = gitUpdater {
|
|
rev-prefix = "Serif";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Beautiful and free fonts for CJK languages";
|
|
homepage = "https://www.google.com/get/noto/help/cjk/";
|
|
longDescription = ''
|
|
Noto Serif CJK is a serif typeface designed as
|
|
an intermediate style between the modern and traditional. It is
|
|
intended to be a multi-purpose digital font for user interface
|
|
designs, digital content, reading on laptops, mobile devices, and
|
|
electronic books. Noto Serif CJK comprehensively covers
|
|
Simplified Chinese, Traditional Chinese, Japanese, and Korean in a
|
|
unified font family. It supports regional variants of ideographic
|
|
characters for each of the four languages. In addition, it supports
|
|
Japanese kana, vertical forms, and variant characters (itaiji); it
|
|
supports Korean hangeul — both contemporary and archaic.
|
|
'';
|
|
license = licenses.ofl;
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [
|
|
mathnerd314
|
|
emily
|
|
leana8959
|
|
];
|
|
};
|
|
}
|