{ungoogled-,}chromium,chromedriver: 130.0.6723.58 -> 130.0.6723.69 (#351519)
[NixPkgs.git] / pkgs / data / fonts / galatia-sil / default.nix
blob70881399d593ef908be2179c8a223f2aaf5f13c6
1 { lib, stdenvNoCC, fetchzip }:
3 stdenvNoCC.mkDerivation rec {
4   pname = "galatia-sil";
5   version = "2.1";
7   src = fetchzip {
8     url = "https://software.sil.org/downloads/r/galatia/GalatiaSIL-${version}.zip";
9     hash = "sha256-7kXnTC5vpUOjcT40oNW6e32zFGejlWJq1J+p+5DiAos=";
10   };
12   installPhase = ''
13     runHook preInstall
15     install -Dm644 $downloadedFile *.ttf -t $out/share/fonts/truetype
16     install -Dm644 $downloadedFile OFL.txt OFL-FAQ.txt FONTLOG.txt -t $out/share/doc/${pname}-${version}
18     runHook postInstall
19   '';
21   meta = with lib; {
22     homepage = "https://software.sil.org/galatia";
23     description = "Font designed to support Biblical Polytonic Greek";
24     longDescription = ''
25       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).
26     '';
27     license = licenses.ofl;
28     platforms = platforms.all;
29     maintainers = [ maintainers.kmein ];
30   };