···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+}