nix/packages: drop cjk serif static

This commit is contained in:
Primrose 2025-06-23 16:13:55 +02:00
parent c725b27c97
commit ee1fc955d9
Signed by: primrose
GPG key ID: 4E887A4CA9714ADA

View file

@ -1,21 +0,0 @@
# static version of noto-fonts cjk serif
{
stdenvNoCC,
fetchFromGitHub,
}:
stdenvNoCC.mkDerivation rec {
pname = "noto-fonts-cjk-serif";
version = "2.003";
src = fetchFromGitHub {
owner = "notofonts";
repo = "noto-cjk";
rev = "Serif${version}";
hash = "sha256-mfbBSdJrUCZiUUmsmndtEW6H3z6KfBn+dEftBySf2j4=";
sparseCheckout = ["Serif/OTC"];
};
installPhase = ''
install -m444 -Dt $out/share/fonts/opentype/noto-cjk Serif/OTC/*.ttc
'';
}