2019-05-13 01:55:32 +00:00
|
|
|
{ lib, fetchzip }:
|
2008-03-02 21:59:32 +00:00
|
|
|
|
2020-04-04 16:16:34 +00:00
|
|
|
let
|
|
|
|
pname = "junicode";
|
|
|
|
version = "1.002";
|
|
|
|
in fetchzip {
|
|
|
|
name = "${pname}-${version}";
|
2010-07-29 18:55:16 +00:00
|
|
|
|
2020-04-04 16:16:34 +00:00
|
|
|
url = "mirror://sourceforge/junicode/junicode/junicode-${version}/junicode-${version}.zip";
|
2008-03-02 21:59:32 +00:00
|
|
|
|
2017-08-10 19:43:49 +00:00
|
|
|
postFetch = ''
|
|
|
|
mkdir -p $out/share/fonts
|
|
|
|
unzip -j $downloadedFile \*.ttf -d $out/share/fonts/junicode-ttf
|
|
|
|
'';
|
2008-03-02 21:59:32 +00:00
|
|
|
|
2020-03-08 09:30:43 +00:00
|
|
|
sha256 = "1n170gw41lr0zr5958z5cgpg6i1aa7kj7iq9s6gdh1cqq7hhgd08";
|
2010-07-29 18:55:16 +00:00
|
|
|
|
|
|
|
meta = {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "http://junicode.sourceforge.net/";
|
2017-08-03 05:08:02 +00:00
|
|
|
description = "A Unicode font for medievalists";
|
2020-04-04 16:07:18 +00:00
|
|
|
maintainers = with lib.maintainers; [ ivan-timokhin ];
|
2020-03-08 09:36:34 +00:00
|
|
|
license = lib.licenses.ofl;
|
2010-07-29 18:55:16 +00:00
|
|
|
};
|
|
|
|
}
|