{ungoogled-,}chromium,chromedriver: 130.0.6723.58 -> 130.0.6723.69 (#351519)
[NixPkgs.git] / pkgs / data / fonts / ibm-plex / default.nix
bloba6c7b4d29535bc3a72610d7bf20c80da0b7161a4
1 { lib, stdenvNoCC, fetchzip }:
3 stdenvNoCC.mkDerivation rec {
4   pname = "ibm-plex";
5   version = "6.4.0";
7   src = fetchzip {
8     url = "https://github.com/IBM/plex/releases/download/v${version}/OpenType.zip";
9     hash = "sha256-/aR3bu03VxenSPed6EqrGoPjWCcKT//MVtb9OC8tSRs=";
10   };
12   installPhase = ''
13     runHook preInstall
15     install -Dm644 */*.otf IBM-Plex-Sans-JP/unhinted/* -t $out/share/fonts/opentype
17     runHook postInstall
18   '';
20   meta = with lib; {
21     description = "IBM Plex Typeface";
22     homepage = "https://www.ibm.com/plex/";
23     changelog = "https://github.com/IBM/plex/raw/v${version}/CHANGELOG.md";
24     license = licenses.ofl;
25     platforms = platforms.all;
26     maintainers = [ maintainers.romildo ];
27   };