fluffychat: 1.22.1 -> 1.23.0 (#364091)
[NixPkgs.git] / pkgs / by-name / cn / cnstrokeorder / package.nix
blobd6908d08ecf7117a6b63959b245f45a9e8bae82c
2   lib,
3   stdenvNoCC,
4   fetchurl,
5 }:
7 stdenvNoCC.mkDerivation rec {
8   pname = "cnstrokeorder";
9   version = "0.0.4.7";
11   src = fetchurl {
12     url = "http://rtega.be/chmn/CNstrokeorder-${version}.ttf";
13     hash = "sha256-YYtOcUvt1V0DwAs/vf9KltcmYCFJNirvwjGyOK4JpIY=";
14   };
16   dontUnpack = true;
18   installPhase = ''
19     runHook preInstall
21     install -D $src $out/share/fonts/truetype/CNstrokeorder-${version}.ttf
23     runHook postInstall
24   '';
26   meta = with lib; {
27     description = "Chinese font that shows stroke order for HSK 1-4";
28     homepage = "http://rtega.be/chmn/index.php?subpage=68";
29     license = [ licenses.arphicpl ];
30     maintainers = with maintainers; [ johnazoidberg ];
31     platforms = platforms.all;
32   };