chromium,chromedriver: 129.0.6668.91 -> 129.0.6668.100
[NixPkgs.git] / pkgs / by-name / lx / lxgw-fusionkai / package.nix
blob99c7a8e3e37f29250e20cb7b12722815a57d7aed
2   lib,
3   fetchFromGitHub,
4   stdenvNoCC,
5 }:
7 stdenvNoCC.mkDerivation rec {
8   pname = "lxgw-fusionkai";
9   version = "24.134";
11   src = fetchFromGitHub {
12     owner = "lxgw";
13     repo = "FusionKai";
14     rev = "v${version}";
15     hash = "sha256-pEISoFEsv8SJOGa2ud/nV1yvl8T9kakfKENu3mfYA5A=";
16   };
18   installPhase = ''
19     runHook preInstall
21     install -Dm644 *.ttf -t $out/share/fonts/truetype
23     runHook postInstall
24   '';
26   meta = with lib; {
27     homepage = "https://github.com/lxgw/FusionKai";
28     description = "Simplified Chinese font derived from LXGW WenKai GB, iansui and Klee One";
29     license = licenses.ofl;
30     platforms = platforms.all;
31     maintainers = with maintainers; [ hellodword ];
32   };