ibm-plex: 5.1.3 -> 6.0.0

https://github.com/IBM/plex/releases/tag/v6.0.0

+4 -3
+4 -3
pkgs/data/fonts/ibm-plex/default.nix
··· 1 1 { lib, fetchzip }: 2 2 3 3 let 4 - version = "5.1.3"; 4 + version = "6.0.0"; 5 5 6 6 in fetchzip { 7 7 name = "ibm-plex-${version}"; ··· 10 10 11 11 postFetch = '' 12 12 mkdir -p $out/share/fonts 13 - unzip -j $downloadedFile "OpenType/*/*.otf" -d $out/share/fonts/opentype 13 + unzip -j $downloadedFile "OpenType/*/*.otf" -x "OpenType/IBM-Plex-Sans-JP/unhinted/*" -d $out/share/fonts/opentype 14 14 ''; 15 15 16 - sha256 = "0w07fkhav2lqdyki7ipnkpji5ngwarlhsyliy0ip7cd29x24ys5h"; 16 + sha256 = "0zv9kw4hmchf374pl0iajzybmx5wklsplg56j115m46i4spij6mr"; 17 17 18 18 meta = with lib; { 19 19 description = "IBM Plex Typeface"; 20 20 homepage = "https://www.ibm.com/plex/"; 21 + changelog = "https://github.com/IBM/plex/raw/v${version}/CHANGELOG.md"; 21 22 license = licenses.ofl; 22 23 platforms = platforms.all; 23 24 maintainers = [ maintainers.romildo ];