nixpkgs/pkgs/data/fonts/cnstrokeorder/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
721 B
Nix
Raw Normal View History

{ lib, stdenvNoCC, fetchurl }:
2019-05-18 11:38:55 +02:00
stdenvNoCC.mkDerivation rec {
pname = "cnstrokeorder";
2019-05-18 11:38:55 +02:00
version = "0.0.4.7";
src = fetchurl {
url = "http://rtega.be/chmn/CNstrokeorder-${version}.ttf";
hash = "sha256-YYtOcUvt1V0DwAs/vf9KltcmYCFJNirvwjGyOK4JpIY=";
};
2019-05-18 11:38:55 +02:00
dontUnpack = true;
2019-05-18 11:38:55 +02:00
installPhase = ''
runHook preInstall
2019-05-18 11:38:55 +02:00
install -D $src $out/share/fonts/truetype/CNstrokeorder-${version}.ttf
runHook postInstall
'';
2019-05-18 11:38:55 +02:00
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;
};
}