2019-05-13 01:55:32 +00:00
|
|
|
{ lib, fetchzip }:
|
2018-08-20 15:50:08 +00:00
|
|
|
|
|
|
|
let
|
|
|
|
majorVersion = "0";
|
|
|
|
minorVersion = "200";
|
|
|
|
pname = "medio";
|
|
|
|
in
|
|
|
|
|
2019-08-13 21:52:01 +00:00
|
|
|
fetchzip {
|
2018-08-20 15:50:08 +00:00
|
|
|
name = "${pname}-font-${majorVersion}.${minorVersion}";
|
|
|
|
|
|
|
|
url = "http://dotcolon.net/DL/font/${pname}.zip";
|
|
|
|
sha256 = "0gxcmhjlsh2pzsmj78vw4v935ax7hfk533ddlhfhfma52zyxyh7x";
|
|
|
|
|
|
|
|
postFetch = ''
|
|
|
|
mkdir -p $out/share/fonts/opentype/${pname}
|
|
|
|
unzip -j $downloadedFile \*.otf -d $out/share/fonts/opentype/${pname}
|
|
|
|
'';
|
|
|
|
|
2019-05-13 01:55:32 +00:00
|
|
|
meta = with lib; {
|
2018-09-08 16:14:53 +00:00
|
|
|
homepage = "http://dotcolon.net/font/${pname}/";
|
2018-08-20 15:50:08 +00:00
|
|
|
description = "Serif font designed by Sora Sagano";
|
|
|
|
longDescription = ''
|
|
|
|
Medio is a serif font designed by Sora Sagano, based roughly
|
|
|
|
on the proportions of the font Tenderness (from the same designer),
|
|
|
|
but with hairline serifs in the style of a Didone.
|
|
|
|
'';
|
|
|
|
platforms = platforms.all;
|
|
|
|
maintainers = with maintainers; [ leenaars ];
|
|
|
|
license = licenses.cc0;
|
|
|
|
};
|
|
|
|
}
|