···11+{ lib, fetchzip }:
22+33+let
44+ version = "1.204";
55+in
66+ fetchzip rec {
77+ name = "annapurna-sil-${version}";
88+99+ url = "https://software.sil.org/downloads/r/annapurna/AnnapurnaSIL-${version}.zip";
1010+1111+ postFetch = ''
1212+ mkdir -p $out/share/{doc,fonts}
1313+ unzip -j $downloadedFile \*.ttf -d $out/share/fonts/truetype
1414+ unzip -j $downloadedFile \*OFL.txt \*OFL-FAQ.txt \*README.txt \*FONTLOG.txt -d "$out/share/doc/${name}"
1515+ '';
1616+1717+ sha256 = "sha256-kVeP9ZX8H+Wn6jzmH1UQvUKY6vJjadMTdEusS7LodFM=";
1818+1919+ meta = with lib; {
2020+ homepage = "https://software.sil.org/annapurna";
2121+ description = "Unicode-based font family with broad support for writing systems that use the Devanagari script";
2222+ longDescription = ''
2323+ Annapurna SIL is a Unicode-based font family with broad support for writing systems that use the Devanagari script. Inspired by traditional calligraphic forms, the design is intended to be highly readable, reasonably compact, and visually attractive.
2424+ '';
2525+ license = licenses.ofl;
2626+ platforms = platforms.all;
2727+ maintainers = [ maintainers.kmein ];
2828+ };
2929+ }