about summary refs log tree commit diff
path: root/nixpkgs/pkgs/data/fonts/myrica/default.nix
blob: 5d8aa43a5b21c1a69e7104a1da5d6174d0ca4600 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ lib, stdenvNoCC, fetchFromGitHub }:

stdenvNoCC.mkDerivation {
  pname = "myrica";
  version = "2.011.20160403";

  src = fetchFromGitHub {
    owner = "tomokuni";
    repo = "Myrica";
    # commit does not exist on any branch on the target repository
    rev = "b737107723bfddd917210f979ccc32ab3eb6dc20";
    hash = "sha256-kx+adbN2DsO81KJFt+FGAPZN+1NpE9xiagKZ4KyaJV0=";
  };

  installPhase = ''
    runHook preInstall

    mkdir -p $out/share/fonts/truetype
    cp product/*.TTC $out/share/fonts/truetype

    runHook postInstall
  '';

  meta = with lib; {
    homepage = "https://myrica.estable.jp/";
    license = licenses.ofl;
    maintainers = with maintainers; [ mikoim ];
    platforms = platforms.all;
  };
}