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