···1+{ stdenv, fetchzip }:
2+3+let
4+ majorVersion = "0";
5+ minorVersion = "200";
6+ pname = "medio";
7+in
8+9+fetchzip rec {
10+ name = "${pname}-font-${majorVersion}.${minorVersion}";
11+12+ url = "http://dotcolon.net/DL/font/${pname}.zip";
13+ sha256 = "0gxcmhjlsh2pzsmj78vw4v935ax7hfk533ddlhfhfma52zyxyh7x";
14+15+ postFetch = ''
16+ mkdir -p $out/share/fonts/opentype/${pname}
17+ unzip -j $downloadedFile \*.otf -d $out/share/fonts/opentype/${pname}
18+ '';
19+20+ meta = with stdenv.lib; {
21+ homepage = "http://dotcolon.net/font/{pname}/";
22+ description = "Serif font designed by Sora Sagano";
23+ longDescription = ''
24+ Medio is a serif font designed by Sora Sagano, based roughly
25+ on the proportions of the font Tenderness (from the same designer),
26+ but with hairline serifs in the style of a Didone.
27+ '';
28+ platforms = platforms.all;
29+ maintainers = with maintainers; [ leenaars ];
30+ license = licenses.cc0;
31+ };
32+}
+32
pkgs/data/fonts/penna/default.nix
···00000000000000000000000000000000
···1+{ stdenv, fetchzip }:
2+3+let
4+ majorVersion = "0";
5+ minorVersion = "10";
6+ pname = "penna";
7+in
8+9+fetchzip rec {
10+ name = "${pname}-font-${majorVersion}.${minorVersion}";
11+12+ url = "http://dotcolon.net/DL/font/${pname}.zip";
13+ sha256 = "0hk15yndm56l6rbdykpkry2flffx0567mgjcqcnsx1iyzwwla5km";
14+15+ postFetch = ''
16+ mkdir -p $out/share/fonts/opentype/${pname}
17+ unzip -j $downloadedFile \*.otf -d $out/share/fonts/opentype/${pname}
18+ '';
19+20+ meta = with stdenv.lib; {
21+ homepage = "http://dotcolon.net/font/{pname}/";
22+ description = "Geometric sans serif designed by Sora Sagano";
23+ longDescription = ''
24+ Penna is a geometric sans serif designed by Sora Sagano,
25+ with outsized counters in the uppercase and a lowercase
26+ with a small x-height.
27+ '';
28+ platforms = platforms.all;
29+ maintainers = with maintainers; [ leenaars ];
30+ license = licenses.cc0;
31+ };
32+}
···1+{ stdenv, fetchzip }:
2+3+let
4+ majorVersion = "0";
5+ minorVersion = "100";
6+ pname = "seshat";
7+in
8+9+fetchzip rec {
10+ name = "${pname}-font-${majorVersion}.${minorVersion}";
11+12+ url = "http://dotcolon.net/DL/font/${pname}.zip";
13+ sha256 = "1zzgc2d0jrris92p3irmxjhdq8aj99alz0z7dlz25qf37lcilrir";
14+15+ postFetch = ''
16+ mkdir -p $out/share/fonts/opentype/${pname}
17+ unzip -j $downloadedFile \*.otf -d $out/share/fonts/opentype/${pname}
18+ '';
19+20+ meta = with stdenv.lib; {
21+ homepage = "http://dotcolon.net/font/{pname}/";
22+ description = "Roman body font designed for main text by Sora Sagano";
23+ longDescription = ''
24+ Seshat is a Roman body font designed for the main text. By
25+ referring to the classical balance, we changed some lines by
26+ omitting part of the lines such as "A" and "n".
27+28+ Also, by attaching the strength of the thickness like Optima
29+ to the main drawing, it makes it more sharp design.
30+31+ It incorporates symbols and ligatures used in the European region.
32+ '';
33+ platforms = platforms.all;
34+ maintainers = with maintainers; [ leenaars ];
35+ license = licenses.cc0;
36+ };
37+}