codesnap: init at 0.8.2 (#364266)
[NixPkgs.git] / pkgs / by-name / ga / galatia-sil / package.nix
blobf686c6023b1a35b00d1bcff0e85c812c87b5bf71
2   lib,
3   stdenvNoCC,
4   fetchzip,
5 }:
7 stdenvNoCC.mkDerivation rec {
8   pname = "galatia-sil";
9   version = "2.1";
11   src = fetchzip {
12     url = "https://software.sil.org/downloads/r/galatia/GalatiaSIL-${version}.zip";
13     hash = "sha256-7kXnTC5vpUOjcT40oNW6e32zFGejlWJq1J+p+5DiAos=";
14   };
16   installPhase = ''
17     runHook preInstall
19     install -Dm644 $downloadedFile *.ttf -t $out/share/fonts/truetype
20     install -Dm644 $downloadedFile OFL.txt OFL-FAQ.txt FONTLOG.txt -t $out/share/doc/${pname}-${version}
22     runHook postInstall
23   '';
25   meta = with lib; {
26     homepage = "https://software.sil.org/galatia";
27     description = "Font designed to support Biblical Polytonic Greek";
28     longDescription = ''
29       Galatia SIL, designed to support Biblical Polytonic Greek, is a Unicode 3.1 font released under the SIL Open Font License. The font supports precomposed characters rather than decomposed characters. Thus, you must use a keyboard that outputs NFC encoding (precomposed).
30     '';
31     license = licenses.ofl;
32     platforms = platforms.all;
33     maintainers = [ maintainers.kmein ];
34   };