{ungoogled-,}chromium,chromedriver: 130.0.6723.58 -> 130.0.6723.69 (#351519)
[NixPkgs.git] / pkgs / data / fonts / garamond-libre / default.nix
blobbd16afaf1895b6ef756bd45bddaf07aa271f50f3
1 { lib, stdenvNoCC, fetchzip }:
3 stdenvNoCC.mkDerivation rec {
4   pname = "garamond-libre";
5   version = "1.4";
7   src = fetchzip {
8     url = "https://github.com/dbenjaminmiller/garamond-libre/releases/download/${version}/garamond-libre_${version}.zip";
9     stripRoot = false;
10     hash = "sha256-cD/JMICtb6MPIUcWs2VOTHnb/05ma0/KKtPyR4oJlIc=";
11   };
13   installPhase = ''
14     runHook preInstall
16     install -Dm644 *.otf -t $out/share/fonts/opentype
18     runHook postInstall
19   '';
21   meta = with lib; {
22     homepage = "https://github.com/dbenjaminmiller/garamond-libre";
23     description = "Garamond Libre font family";
24     maintainers = with maintainers; [ drupol ];
25     license = licenses.x11;
26     platforms = platforms.all;
27   };