summary refs log tree commit diff
path: root/pkgs/data/fonts/yanone-kaffeesatz/default.nix
blob: e713f4d64a3753c385fd52ccc7f03fc23097280c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ lib, fetchzip }:

fetchzip {
  name = "yanone-kaffeesatz-2004";

  url = https://yanone.de/2015/data/UIdownloads/Yanone%20Kaffeesatz.zip;

  postFetch = ''
    mkdir -p $out/share/fonts
    unzip -j $downloadedFile \*.otf -d $out/share/fonts/opentype
  '';

  sha256 = "190c4wx7avy3kp98lsyml7kc0jw7csf5n79af2ypbkhsadfsy8di";

  meta = {
    description = "The free font classic";
    maintainers = with lib.maintainers; [ mt-caret ];
    platforms = with lib.platforms; all;
    homepage = https://yanone.de/fonts/kaffeesatz/;
    license = lib.licenses.ofl;
  };
}