about summary refs log tree commit diff
path: root/nixpkgs/pkgs/data/fonts/cnstrokeorder/default.nix
blob: 66803b1b63ff8e79b477d995372e71f89f0c3e12 (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
{ lib, stdenvNoCC, fetchurl }:

stdenvNoCC.mkDerivation rec {
  pname = "cnstrokeorder";
  version = "0.0.4.7";

  src = fetchurl {
    url = "http://rtega.be/chmn/CNstrokeorder-${version}.ttf";
    hash = "sha256-YYtOcUvt1V0DwAs/vf9KltcmYCFJNirvwjGyOK4JpIY=";
  };

  dontUnpack = true;

  installPhase = ''
    runHook preInstall

    install -D $src $out/share/fonts/truetype/CNstrokeorder-${version}.ttf

    runHook postInstall
  '';

  meta = with lib; {
    description = "Chinese font that shows stroke order for HSK 1-4";
    homepage = "http://rtega.be/chmn/index.php?subpage=68";
    license = [ licenses.arphicpl ];
    maintainers = with maintainers; [ johnazoidberg ];
    platforms = platforms.all;
  };
}