0d9fc34957
GitOrigin-RevId: 5ed481943351e9fd354aeb557679624224de38d5
27 lines
817 B
Nix
27 lines
817 B
Nix
# when changing this expression convert it from 'fetchzip' to 'stdenvNoCC.mkDerivation'
|
|
{ lib, fetchzip }:
|
|
|
|
let
|
|
version = "6.0.1";
|
|
|
|
in (fetchzip {
|
|
name = "ibm-plex-${version}";
|
|
|
|
url = "https://github.com/IBM/plex/releases/download/v${version}/OpenType.zip";
|
|
|
|
sha256 = "sha256-HxO0L5Q6WJQBqtg64cczzuRcSYi4jEqbOzEWxDmqFp8=";
|
|
|
|
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 ];
|
|
};
|
|
}).overrideAttrs (_: {
|
|
postFetch = ''
|
|
mkdir -p $out/share/fonts
|
|
unzip -j $downloadedFile "OpenType/*/*.otf" -x "OpenType/IBM-Plex-Sans-JP/unhinted/*" -d $out/share/fonts/opentype
|
|
'';
|
|
})
|