about summary refs log tree commit diff
path: root/pkgs/by-name/ar/ark-pixel-font/package.nix
blob: 15d3b4dd43f69849b634bf200f2cdd3b040a1af1 (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{ lib
, python312Packages
, fetchFromGitHub
, nix-update-script
}:

python312Packages.buildPythonPackage rec {
  pname = "ark-pixel-font";
  version = "2024.04.05";

  src = fetchFromGitHub {
    owner = "TakWolf";
    repo = pname;
    rev = version;
    hash = "sha256-G34cu/mSt/p8UPJt+Q1T2qy6d9LGgT1Jslt9syRz5eo=";
  };

  format = "other";

  nativeBuildInputs = with python312Packages; [
    pixel-font-builder
    unidata-blocks
    character-encoding-utils
    pypng
    pillow
    beautifulsoup4
    jinja2
    gitpython
  ];

  buildPhase = ''
    runHook preBuild

    python build.py

    runHook postBuild
  '';

  installPhase = ''
    runHook preInstall

    install -Dm444 build/outputs/*.bdf -t $out/share/fonts/bdf
    install -Dm444 build/outputs/*.otf -t $out/share/fonts/opentype
    install -Dm444 build/outputs/*.ttf -t $out/share/fonts/truetype
    install -Dm444 build/outputs/*.woff2 -t $out/share/fonts/woff2

    runHook postInstall
  '';

  passthru.updateScript = nix-update-script { };

  meta = {
    description = "Open source pan-CJK pixel font";
    homepage = "https://ark-pixel-font.takwolf.com/";
    license = lib.licenses.ofl;
    maintainers = with lib.maintainers; [ h7x4 ];
    platforms = lib.platforms.all;
  };
}