nixpkgs/pkgs/data/fonts/ibm-plex/default.nix

22 lines
584 B
Nix
Raw Normal View History

2018-07-29 12:28:44 -07:00
{ lib, fetchzip }:
2017-12-19 12:17:52 -08:00
2018-07-29 12:28:44 -07:00
let
2019-12-09 17:00:00 -08:00
version = "4.0.2";
2019-08-13 14:52:01 -07:00
in fetchzip {
2017-12-19 12:17:52 -08:00
name = "ibm-plex-${version}";
2018-07-29 12:28:44 -07:00
url = "https://github.com/IBM/plex/releases/download/v${version}/OpenType.zip";
2017-12-19 12:17:52 -08:00
postFetch = ''
2018-07-29 12:28:44 -07:00
mkdir -p $out/share/fonts
unzip -j $downloadedFile "OpenType/*/*.otf" -d $out/share/fonts/opentype
2017-12-19 12:17:52 -08:00
'';
2019-12-09 17:00:00 -08:00
sha256 = "1v00y1l9sjcv9w8d3115w1vv1b7bgwbrv4d3zv68galk8wz8px1x";
2017-12-19 12:17:52 -08:00
meta = with lib; {
description = "IBM Plex Typeface";
homepage = "https://www.ibm.com/plex/";
2017-12-19 12:17:52 -08:00
license = licenses.ofl;
platforms = platforms.all;
maintainers = [ maintainers.romildo ];
};
}