1{ lib, fetchzip }:
2
3let version = "1.100"; in
4fetchzip {
5 name = "ankacoder-${version}";
6 url = "https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/anka-coder-fonts/AnkaCoder.${version}.zip";
7
8 postFetch = ''
9 unzip $downloadedFile
10 mkdir -p $out/share/fonts/truetype
11 cp *.ttf $out/share/fonts/truetype
12 '';
13
14 sha256 = "1jqx9micfmiarqh9xp330gl96v3vxbwzz9cmg2vi845n9md4im85";
15
16 meta = with lib; {
17 description = "Anka/Coder fonts";
18 homepage = "https://code.google.com/archive/p/anka-coder-fonts";
19 license = licenses.ofl;
20 maintainers = with maintainers; [ dtzWill ];
21 platforms = platforms.all;
22 };
23}