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