kanji-stroke-order-font: 4.002 -> 4.003
This commit is contained in:
parent
e5b91d92a0
commit
a52e20c503
1 changed files with 11 additions and 9 deletions
|
@ -1,20 +1,22 @@
|
|||
{ stdenv, fetchzip }:
|
||||
{ stdenv, fetchurl }:
|
||||
|
||||
let
|
||||
version = "4.002";
|
||||
in fetchzip {
|
||||
version = "4.003";
|
||||
debianVersion = "dfsg-1";
|
||||
in stdenv.mkDerivation {
|
||||
name = "kanji-stroke-order-font-${version}";
|
||||
|
||||
url = "https://sites.google.com/site/nihilistorguk/KanjiStrokeOrders_v${version}.zip?attredirects=0";
|
||||
src = fetchurl {
|
||||
url = "https://salsa.debian.org/fonts-team/fonts-kanjistrokeorders/-/archive/debian/${version}_${debianVersion}/fonts-kanjistrokeorders-debian-${version}_${debianVersion}.tar.bz2";
|
||||
sha256 = "1a8hxzkrfjz0h5gl9h0panzzsn7cldlklxryyzmpam23g32q6bg1";
|
||||
};
|
||||
|
||||
postFetch = ''
|
||||
installPhase = ''
|
||||
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
|
||||
cp *.ttf $out/share/fonts/kanji-stroke-order
|
||||
cp *.txt $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/";
|
||||
|
|
Loading…
Reference in a new issue