about summary refs log tree commit diff
path: root/doc/web.nix
blob: fcf848911bee35c22137a547c0a390a69881a5d4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{ depotSrc ? builtins.fetchGit {
    url = "https://code.tvl.fyi";
    ref = "canon";
    rev = "2cd2b58a04cd86e8bf1d72e9c0a67ad8c8e9c8dd";
  }
}:

let
  depot = import depotSrc { };
in

depot.users.sterni.htmlman {
  title = "buchstabensuppe";
  pages = [
    {
      name = "bs-renderflipdot";
      section = 1;
    }
  ];
  manDir = ./man;
  description = ''
    * [Source (GitHub)](https://github.com/sternenseemann/buchstabensuppe)
    * [Source (Mirror)](https://code.sterni.lv/buchstabensuppe/)

    buchstabensuppe is a simple font rendering library intended
    for rendering fonts on binary black and white displays
    with low resolutions, for example
    [OpenLab's flipdot display](https://wiki.openlab-augsburg.de/Flipdots).
    The goal is to implement font rendering that
    is adequate for the situation and as correct as possible
    (e. g. does text shaping, …).

    Documentation is still a bit sparse, but shall be improved.
    For now most information is in the
    [README](https://github.com/sternenseemann/buchstabensuppe/blob/main/README.md).
  '';
}