mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
Merge pull request #57678 from dtzWill/update/ibm-plex-1.3.0
ibm-plex: 1.2.3 -> 1.3.0
This commit is contained in:
commit
db4f3b1744
1 changed files with 3 additions and 3 deletions
|
@ -1,15 +1,15 @@
|
|||
{ lib, fetchzip }:
|
||||
|
||||
let
|
||||
version = "1.2.3";
|
||||
version = "1.3.0";
|
||||
in fetchzip rec {
|
||||
name = "ibm-plex-${version}";
|
||||
url = "https://github.com/IBM/plex/releases/download/v${version}/OpenType.zip";
|
||||
postFetch = ''
|
||||
mkdir -p $out/share/fonts
|
||||
unzip -j $downloadedFile \*.otf -d $out/share/fonts/opentype
|
||||
unzip -j $downloadedFile "OpenType/*/*.otf" -d $out/share/fonts/opentype
|
||||
'';
|
||||
sha256 = "16vmby2svr4q0lvsnrpxzmhkb6yv84x2jg6jccaj7x9vq56b4adg";
|
||||
sha256 = "1xjvxyp7h1f7m82800m3q71hksddh25c9a9vnr3r070ppi19s5fc";
|
||||
|
||||
meta = with lib; {
|
||||
description = "IBM Plex Typeface";
|
||||
|
|
Loading…
Reference in a new issue