jost: init at 3.3

This commit is contained in:
Aria Edmonds 2019-06-10 16:02:28 +10:00
parent 80b51d983a
commit 8e58a54b09
2 changed files with 24 additions and 0 deletions

View file

@ -0,0 +1,22 @@
{stdenv, fetchzip}:
let
version = "3.3";
in fetchzip {
name = "jost-${version}";
url = "https://github.com/indestructible-type/Jost/releases/download/${version}/Jost.zip";
postFetch = ''
mkdir -p $out/share/fonts
unzip -j $downloadedFile \*.otf -d $out/share/fonts/opentype
'';
sha256="00nrhs3aif2hc4yhjhbn9ywmydl2w0g0hv5m5is8gv7wx8yi2j9z";
meta = with stdenv.lib; {
homepage = https://github.com/indestructible-type/Jost;
description = "A sans serif font by Indestructible Type";
license = licenses.ofl;
maintainers = [ maintainers.ar1a ];
};
}

View file

@ -16330,6 +16330,8 @@ in
iwona = callPackage ../data/fonts/iwona { };
jost = callPackage ../data/fonts/jost { };
junicode = callPackage ../data/fonts/junicode { };
kanji-stroke-order-font = callPackage ../data/fonts/kanji-stroke-order-font {};