{ungoogled-,}chromium,chromedriver: 130.0.6723.58 -> 130.0.6723.69 (#351519)
[NixPkgs.git] / pkgs / data / fonts / myrica / default.nix
blob5d8aa43a5b21c1a69e7104a1da5d6174d0ca4600
1 { lib, stdenvNoCC, fetchFromGitHub }:
3 stdenvNoCC.mkDerivation {
4   pname = "myrica";
5   version = "2.011.20160403";
7   src = fetchFromGitHub {
8     owner = "tomokuni";
9     repo = "Myrica";
10     # commit does not exist on any branch on the target repository
11     rev = "b737107723bfddd917210f979ccc32ab3eb6dc20";
12     hash = "sha256-kx+adbN2DsO81KJFt+FGAPZN+1NpE9xiagKZ4KyaJV0=";
13   };
15   installPhase = ''
16     runHook preInstall
18     mkdir -p $out/share/fonts/truetype
19     cp product/*.TTC $out/share/fonts/truetype
21     runHook postInstall
22   '';
24   meta = with lib; {
25     homepage = "https://myrica.estable.jp/";
26     license = licenses.ofl;
27     maintainers = with maintainers; [ mikoim ];
28     platforms = platforms.all;
29   };