summary refs log tree commit diff
path: root/pkgs/data/fonts/junicode/default.nix
blob: 4e42cf1c4174e44945a504b70751ee075aab45a1 (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 = "junicode";
  version = "1.003";

  src = fetchFromGitHub {
    owner = "psb1558";
    repo = "Junicode-font";
    rev = "55d816d91a5e19795d9b66edec478379ee2b9ddb";
    hash = "sha256-eTiMgI8prnpR4H6sqKRaB3Gcnt4C5QWZalRajWW49G4=";
  };

  installPhase = ''
    runHook preInstall

    local out_ttf=$out/share/fonts/junicode-ttf
    mkdir -p $out_ttf
    cp legacy/*.ttf $out_ttf

    runHook postInstall
  '';

  meta = {
    homepage = "https://github.com/psb1558/Junicode-font";
    description = "A Unicode font for medievalists";
    maintainers = with lib.maintainers; [ ivan-timokhin ];
    license = lib.licenses.ofl;
  };
}