Merge pull request #309462 from lebensterben/lxgw-wenkai-tc

lxgw-wenkai-tc: init at 1.330
This commit is contained in:
Weijia Wang 2024-05-13 11:34:43 +02:00 committed by GitHub
commit f293e4ebbc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 38 additions and 0 deletions

View file

@ -11300,6 +11300,14 @@
githubId = 887072;
name = "Alexander Lebedev";
};
lebensterben = {
name = "Lucius Hu";
github = "lebensterben";
githubId = 1222865;
keys = [{
fingerprint = "80C6 77F2 ED0B E732 3835 A8D3 7E47 4E82 E29B 5A7A";
}];
};
lecoqjacob = {
name = "Jacob LeCoq";
email = "lecoqjacob@gmail.com";

View file

@ -0,0 +1,30 @@
{ stdenvNoCC
, fetchurl
, lib
}:
stdenvNoCC.mkDerivation rec {
pname = "lxgw-wenkai-tc";
version = "1.330";
src = fetchurl {
url = "https://github.com/lxgw/LxgwWenKaiTC/releases/download/v${version}/${pname}-v${version}.tar.gz";
hash = "sha256-qpX5shH1HbGMa287u/R1rMFgQeAUC0wwKFVD+QSTyho=";
};
installPhase = ''
runHook preInstall
mkdir -p $out/share/fonts/truetype
mv *.ttf $out/share/fonts/truetype
runHook postInstall
'';
meta = with lib; {
homepage = "https://github.com/lxgw/LxgwWenKaiTC";
description = "The Traditional Chinese Edition of LXGW WenKai.";
license = licenses.ofl;
platforms = platforms.all;
maintainers = with maintainers; [ lebensterben ];
};
}