{ungoogled-,}chromium,chromedriver: 130.0.6723.58 -> 130.0.6723.69 (#351519)
[NixPkgs.git] / pkgs / data / fonts / ezra-sil / default.nix
blob7b628bd4bbc00cb57f830bacd9498eaa69364428
1 { lib, stdenvNoCC, fetchzip }:
3 stdenvNoCC.mkDerivation rec {
4   pname = "ezra-sil";
5   version = "2.51";
7   src = fetchzip {
8     url = "https://software.sil.org/downloads/r/ezra/EzraSIL-${version}.zip";
9     hash = "sha256-hGOHjvFVFLwyVkcoUz+7rQekCdn4oEOB+L16XRpthJM=";
10   };
12   installPhase = ''
13     runHook preInstall
15     install -Dm644 *.ttf -t $out/share/fonts/truetype
16     install -Dm644 OFL-FAQ.txt README.txt FONTLOG.txt -t $out/share/doc/${pname}-${version}
18     runHook postInstall
19   '';
21   meta = with lib; {
22     homepage = "https://software.sil.org/ezra";
23     description = "Typeface fashioned after the square letter forms of the typography of the Biblia Hebraica Stuttgartensia (BHS)";
24     license = licenses.ofl;
25     platforms = platforms.all;
26     maintainers = [ maintainers.kmein ];
27   };