{ungoogled-,}chromium,chromedriver: 130.0.6723.58 -> 130.0.6723.69 (#351519)
[NixPkgs.git] / pkgs / data / fonts / gentium-book-basic / default.nix
blob5247e9e6d88237222c56d5c515b85b6af7eb63f5
1 { lib, stdenvNoCC, fetchzip }:
3 stdenvNoCC.mkDerivation rec {
4   pname = "gentium-book-basic";
5   version = "1.102";
7   src = fetchzip {
8     url = "http://software.sil.org/downloads/r/gentium/GentiumBasic_${lib.versions.major version}${lib.versions.minor version}.zip";
9     hash = "sha256-oCmpl95MJRfCV25cg/4cf8AwQWnoymXasSss1ziOPoE=";
10   };
12   installPhase = ''
13     runHook preInstall
15     install -Dm644 *.ttf                       -t $out/share/fonts/truetype
16     install -Dm644 FONTLOG.txt GENTIUM-FAQ.txt -t $out/share/doc/${pname}-${version}
18     runHook postInstall
19   '';
21   meta = with lib; {
22     homepage = "https://software.sil.org/gentium/";
23     description = "High-quality typeface family for Latin, Cyrillic, and Greek";
24     maintainers = [ ];
25     license = licenses.ofl;
26     platforms = platforms.all;
27   };