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