summary refs log tree commit diff
path: root/pkgs/data/fonts/paratype-pt/serif.nix
blob: a6f21e425f8d273173b0d8f7e74855a80485c7d3 (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
{ stdenv, fetchzip }:

fetchzip {
  name = "paratype-pt-serif";

  url = [
    "https://company.paratype.com/system/attachments/634/original/ptserif.zip"
    "http://rus.paratype.ru/system/attachments/634/original/ptserif.zip"
  ];

  postFetch = ''
    mkdir -p $out/share/{doc,fonts}
    unzip -j $downloadedFile \*.ttf -d $out/share/fonts/truetype
    unzip -j $downloadedFile \*.txt -d $out/share/doc/paratype
  '';

  sha256 = "1iw5qi4ag3yp1lwmi91lb18gr768bqwl46xskaqnkhr9i9qp0v6d";

  meta = with stdenv.lib; {
    homepage = "http://www.paratype.ru/public/";
    description = "An open Paratype font";

    license = "Open Paratype license";
    # no commercial distribution of the font on its own
    # must rename on modification
    # http://www.paratype.ru/public/pt_openlicense.asp

    platforms = platforms.all;
    maintainers = with maintainers; [ raskin ];
  };
}