···11+{ stdenv, fetchzip }:
22+33+let
44+ majorVersion = "0";
55+ minorVersion = "200";
66+ pname = "medio";
77+in
88+99+fetchzip rec {
1010+ name = "${pname}-font-${majorVersion}.${minorVersion}";
1111+1212+ url = "http://dotcolon.net/DL/font/${pname}.zip";
1313+ sha256 = "0gxcmhjlsh2pzsmj78vw4v935ax7hfk533ddlhfhfma52zyxyh7x";
1414+1515+ postFetch = ''
1616+ mkdir -p $out/share/fonts/opentype/${pname}
1717+ unzip -j $downloadedFile \*.otf -d $out/share/fonts/opentype/${pname}
1818+ '';
1919+2020+ meta = with stdenv.lib; {
2121+ homepage = "http://dotcolon.net/font/{pname}/";
2222+ description = "Serif font designed by Sora Sagano";
2323+ longDescription = ''
2424+ Medio is a serif font designed by Sora Sagano, based roughly
2525+ on the proportions of the font Tenderness (from the same designer),
2626+ but with hairline serifs in the style of a Didone.
2727+ '';
2828+ platforms = platforms.all;
2929+ maintainers = with maintainers; [ leenaars ];
3030+ license = licenses.cc0;
3131+ };
3232+}
+32
pkgs/data/fonts/penna/default.nix
···11+{ stdenv, fetchzip }:
22+33+let
44+ majorVersion = "0";
55+ minorVersion = "10";
66+ pname = "penna";
77+in
88+99+fetchzip rec {
1010+ name = "${pname}-font-${majorVersion}.${minorVersion}";
1111+1212+ url = "http://dotcolon.net/DL/font/${pname}.zip";
1313+ sha256 = "0hk15yndm56l6rbdykpkry2flffx0567mgjcqcnsx1iyzwwla5km";
1414+1515+ postFetch = ''
1616+ mkdir -p $out/share/fonts/opentype/${pname}
1717+ unzip -j $downloadedFile \*.otf -d $out/share/fonts/opentype/${pname}
1818+ '';
1919+2020+ meta = with stdenv.lib; {
2121+ homepage = "http://dotcolon.net/font/{pname}/";
2222+ description = "Geometric sans serif designed by Sora Sagano";
2323+ longDescription = ''
2424+ Penna is a geometric sans serif designed by Sora Sagano,
2525+ with outsized counters in the uppercase and a lowercase
2626+ with a small x-height.
2727+ '';
2828+ platforms = platforms.all;
2929+ maintainers = with maintainers; [ leenaars ];
3030+ license = licenses.cc0;
3131+ };
3232+}
···11+{ stdenv, fetchzip }:
22+33+let
44+ majorVersion = "0";
55+ minorVersion = "100";
66+ pname = "seshat";
77+in
88+99+fetchzip rec {
1010+ name = "${pname}-font-${majorVersion}.${minorVersion}";
1111+1212+ url = "http://dotcolon.net/DL/font/${pname}.zip";
1313+ sha256 = "1zzgc2d0jrris92p3irmxjhdq8aj99alz0z7dlz25qf37lcilrir";
1414+1515+ postFetch = ''
1616+ mkdir -p $out/share/fonts/opentype/${pname}
1717+ unzip -j $downloadedFile \*.otf -d $out/share/fonts/opentype/${pname}
1818+ '';
1919+2020+ meta = with stdenv.lib; {
2121+ homepage = "http://dotcolon.net/font/{pname}/";
2222+ description = "Roman body font designed for main text by Sora Sagano";
2323+ longDescription = ''
2424+ Seshat is a Roman body font designed for the main text. By
2525+ referring to the classical balance, we changed some lines by
2626+ omitting part of the lines such as "A" and "n".
2727+2828+ Also, by attaching the strength of the thickness like Optima
2929+ to the main drawing, it makes it more sharp design.
3030+3131+ It incorporates symbols and ligatures used in the European region.
3232+ '';
3333+ platforms = platforms.all;
3434+ maintainers = with maintainers; [ leenaars ];
3535+ license = licenses.cc0;
3636+ };
3737+}