evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / cn / cnstrokeorder / package.nix
blob66803b1b63ff8e79b477d995372e71f89f0c3e12
1 { lib, stdenvNoCC, fetchurl }:
3 stdenvNoCC.mkDerivation rec {
4   pname = "cnstrokeorder";
5   version = "0.0.4.7";
7   src = fetchurl {
8     url = "http://rtega.be/chmn/CNstrokeorder-${version}.ttf";
9     hash = "sha256-YYtOcUvt1V0DwAs/vf9KltcmYCFJNirvwjGyOK4JpIY=";
10   };
12   dontUnpack = true;
14   installPhase = ''
15     runHook preInstall
17     install -D $src $out/share/fonts/truetype/CNstrokeorder-${version}.ttf
19     runHook postInstall
20   '';
22   meta = with lib; {
23     description = "Chinese font that shows stroke order for HSK 1-4";
24     homepage = "http://rtega.be/chmn/index.php?subpage=68";
25     license = [ licenses.arphicpl ];
26     maintainers = with maintainers; [ johnazoidberg ];
27     platforms = platforms.all;
28   };