dotnet: improve language coverage of passthru.tests for dotnet sdks (#370789)
[NixPkgs.git] / pkgs / by-name / an / annapurna-sil / package.nix
blobef9cdbc6e62ab39ffeb99318c3e2764b37fda726
2   lib,
3   stdenvNoCC,
4   fetchzip,
5 }:
7 stdenvNoCC.mkDerivation rec {
8   pname = "annapurna-sil";
9   version = "2.100";
11   src = fetchzip {
12     url = "https://software.sil.org/downloads/r/annapurna/AnnapurnaSIL-${version}.zip";
13     hash = "sha256-TFaCchtd9SRGsU9r+m8QOvZfc7/FJxwclkSfbLwf6/4=";
14   };
16   installPhase = ''
17     runHook preInstall
19     install -Dm644 *.ttf -t $out/share/fonts/truetype
20     install -Dm644 OFL.txt OFL-FAQ.txt README.txt FONTLOG.txt -t $out/share/doc/${pname}-${version}
22     runHook postInstall
23   '';
25   meta = with lib; {
26     homepage = "https://software.sil.org/annapurna";
27     description = "Unicode-based font family with broad support for writing systems that use the Devanagari script";
28     longDescription = ''
29       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.
30     '';
31     license = licenses.ofl;
32     platforms = platforms.all;
33     maintainers = [ maintainers.kmein ];
34   };