Merge master into staging-next

This commit is contained in:
Frederik Rietdijk
2019-05-24 12:39:37 +02:00
193 changed files with 3306 additions and 6412 deletions

View File

@@ -0,0 +1,26 @@
{ lib, fetchurl }:
let
version = "0.0.4.7";
in fetchurl {
name = "cnstrokeorder-${version}";
url = "http://rtega.be/chmn/CNstrokeorder-${version}.ttf";
recursiveHash = true;
downloadToTemp = true;
postFetch = ''
install -D $downloadedFile $out/share/fonts/truetype/CNstrokeorder-${version}.ttf
'';
sha256 = "0cizgfdgbq9av5c8234mysr2q54iw9pkxrmq5ga8gv32hxhl5bx4";
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;
};
}

View File

@@ -0,0 +1,26 @@
{ stdenv, fetchzip }:
let
version = "4.002";
in fetchzip {
name = "kanji-stroke-order-font-${version}";
url = "https://sites.google.com/site/nihilistorguk/KanjiStrokeOrders_v${version}.zip?attredirects=0";
postFetch = ''
mkdir -p $out/share/fonts/kanji-stroke-order $out/share/doc/kanji-stroke-order
unzip -j $downloadedFile \*.ttf -d $out/share/fonts/kanji-stroke-order
unzip -j $downloadedFile \*.txt -d $out/share/doc/kanji-stroke-order
'';
sha256 = "194ylkx5p7r1461wnnd3hisv5dz1xl07fyxmg8gv47zcwvdmwkc0";
meta = with stdenv.lib; {
description = "Font containing stroke order diagrams for over 6500 kanji, 180 kana and other characters";
homepage = "https://sites.google.com/site/nihilistorguk/";
license = [ licenses.bsd3 ];
maintainers = with maintainers; [ ptrhlm ];
platforms = platforms.all;
};
}