2019-05-13 01:55:32 +00:00
|
|
|
{ lib, fetchzip }:
|
2017-11-02 12:09:47 +00:00
|
|
|
|
2019-05-13 01:55:32 +00:00
|
|
|
let
|
2017-11-02 12:09:47 +00:00
|
|
|
version = "0_995";
|
2019-05-13 01:55:32 +00:00
|
|
|
in fetchzip {
|
|
|
|
name = "iwona-${version}";
|
|
|
|
url = "http://jmn.pl/pliki/Iwona-otf-${version}.zip";
|
2017-11-02 12:09:47 +00:00
|
|
|
|
2019-05-13 01:55:32 +00:00
|
|
|
postFetch = ''
|
|
|
|
mkdir -p $out/share/fonts/opentype
|
|
|
|
unzip -j $downloadedFile *.otf -d $out/share/fonts/opentype
|
2017-11-02 12:09:47 +00:00
|
|
|
'';
|
2019-05-13 01:55:32 +00:00
|
|
|
sha256 = "1dcpn13bd31dw7ir0s722bv3nk136dy6qsab0kznjbzfqd7agswa";
|
2017-11-02 12:09:47 +00:00
|
|
|
|
2019-05-13 01:55:32 +00:00
|
|
|
meta = with lib; {
|
2017-11-02 12:09:47 +00:00
|
|
|
description = "A two-element sans-serif typeface, created by Małgorzata Budyta";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "http://jmn.pl/en/kurier-i-iwona/";
|
2017-11-02 12:09:47 +00:00
|
|
|
# "[...] GUST Font License (GFL), which is a free license, legally
|
|
|
|
# equivalent to the LaTeX Project Public # License (LPPL), version 1.3c or
|
|
|
|
# later." - GUST website
|
|
|
|
license = licenses.lppl13c;
|
|
|
|
maintainers = with maintainers; [ siddharthist ];
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|