nixos/pkgs/fonts/noto-serif-cjk.nix

21 lines
360 B
Nix
Raw Normal View History

{
nixosTests,
srcs,
stdenvNoCC,
2025-07-13 06:04:55 +08:00
}:
let
source = srcs.noto-serif-cjk;
in
2025-07-13 06:04:55 +08:00
stdenvNoCC.mkDerivation (_finalAttrs: {
pname = "noto-serif-cjk";
version = source.version;
2025-07-13 06:04:55 +08:00
src = source.src;
2025-07-13 06:04:55 +08:00
installPhase = ''
install -m444 -Dt $out/share/fonts/opentype/noto-serif-cjk Serif/OTC/*.ttc
'';
2025-07-13 06:04:55 +08:00
passthru.tests.noto-fonts = nixosTests.noto-fonts;
})