{ungoogled-,}chromium,chromedriver: 130.0.6723.58 -> 130.0.6723.69 (#351519)
[NixPkgs.git] / pkgs / data / fonts / jost / default.nix
blobc8577e5e171e54e66240b6c9765a9d20a687d395
1 { lib, stdenvNoCC, fetchzip }:
3 stdenvNoCC.mkDerivation rec {
4   pname = "jost";
5   version = "3.5";
7   src = fetchzip {
8     url = "https://github.com/indestructible-type/Jost/releases/download/${version}/Jost.zip";
9     hash = "sha256-ne81bMhmTzNZ/GGIzb7nCYh19vNLK+hJ3cP/zDxtiGM=";
10   };
12   installPhase = ''
13     runHook preInstall
15     install -Dm644 fonts/otf/*.otf -t $out/share/fonts/opentype
17     runHook postInstall
18   '';
20   meta = with lib; {
21     homepage = "https://github.com/indestructible-type/Jost";
22     description = "Sans serif font by Indestructible Type";
23     license = licenses.ofl;
24     maintainers = [ maintainers.ar1a ];
25   };