about summary refs log tree commit diff
path: root/pkgs/data/fonts/ibm-plex
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2021-10-30 04:20:00 +0000
committerMario Rodas <marsam@users.noreply.github.com>2021-10-30 04:20:00 +0000
commit36d6f48076e959df7119db850f993fc07e995ea9 (patch)
tree7154d46dcb08ce5065ae0351fa6b9d63ea9590a9 /pkgs/data/fonts/ibm-plex
parentf0685040140986a791240d29b1ca93cd35b103c6 (diff)
ibm-plex: 5.1.3 -> 6.0.0
https://github.com/IBM/plex/releases/tag/v6.0.0
Diffstat (limited to 'pkgs/data/fonts/ibm-plex')
-rw-r--r--pkgs/data/fonts/ibm-plex/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/data/fonts/ibm-plex/default.nix b/pkgs/data/fonts/ibm-plex/default.nix
index cd33a834acc51..c24c507695e53 100644
--- a/pkgs/data/fonts/ibm-plex/default.nix
+++ b/pkgs/data/fonts/ibm-plex/default.nix
@@ -1,7 +1,7 @@
 { lib, fetchzip }:
 
 let
-  version = "5.1.3";
+  version = "6.0.0";
 
 in fetchzip {
   name = "ibm-plex-${version}";
@@ -10,14 +10,15 @@ in fetchzip {
 
   postFetch = ''
     mkdir -p $out/share/fonts
-    unzip -j $downloadedFile "OpenType/*/*.otf" -d $out/share/fonts/opentype
+    unzip -j $downloadedFile "OpenType/*/*.otf" -x "OpenType/IBM-Plex-Sans-JP/unhinted/*" -d $out/share/fonts/opentype
   '';
 
-  sha256 = "0w07fkhav2lqdyki7ipnkpji5ngwarlhsyliy0ip7cd29x24ys5h";
+  sha256 = "0zv9kw4hmchf374pl0iajzybmx5wklsplg56j115m46i4spij6mr";
 
   meta = with lib; {
     description = "IBM Plex Typeface";
     homepage = "https://www.ibm.com/plex/";
+    changelog = "https://github.com/IBM/plex/raw/v${version}/CHANGELOG.md";
     license = licenses.ofl;
     platforms = platforms.all;
     maintainers = [ maintainers.romildo ];