diff options
| author | Anderson Torres <anderson.torres.8519@gmail.com> | 2025-09-14 20:18:26 -0300 |
|---|---|---|
| committer | 宋文武 <iyzsong@member.fsf.org> | 2025-09-17 17:59:00 +0800 |
| commit | f12d117de87a044244e4ad918fb745f771731e0a (patch) | |
| tree | 6ea70862e2454a53ad9bff779b8912564ada8323 | |
| parent | 440280ea6ba7e124b0e9c67d03f5a82a5548f872 (diff) | |
gnu: font-ibm-plex: Update to 6.4.2-0-89cba80.
* gnu/packages/fonts.scm (font-ibm-plex): Update to 6.4.2-0-89cba80.
Closes: #2695
Fixes: #2674
Change-Id: Ib819e6b3b573ffd71ca6d2918a426d33165ea029
Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
| -rw-r--r-- | gnu/packages/fonts.scm | 46 |
1 files changed, 24 insertions, 22 deletions
diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm index 964a355cd2..c5df56dc44 100644 --- a/gnu/packages/fonts.scm +++ b/gnu/packages/fonts.scm @@ -269,31 +269,33 @@ glyphset has also been extended, supporting now a wider number of languages.") (license license:silofl1.1)))) (define-public font-ibm-plex - (package - (name "font-ibm-plex") - (version "6.4.2") - ;; We prefer git-fetch since it lets us get the opentype, truetype and web - ;; fonts all in one download. The zip archive releases separate the - ;; opentype, truetype and web fonts into three separate archives. - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/IBM/plex") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "00lzbm1b7zbx5q3p0s8fh9q9zj6z4k01fn7n177iybh9xn4jgx0p")))) - (build-system font-build-system) - (outputs '("out" "ttf" "woff")) - (home-page "https://github.com/IBM/plex") - (synopsis "IBM Plex typeface") - (description - "This package provides the Plex font family. It comes in a Sans, Serif, + (let ((commit "89cba80dad75561262e758f4b6ddd474c5119796") + (revision "0")) + (package + (name "font-ibm-plex") + (version (git-version "6.4.2" revision commit)) + ;; We prefer git-fetch since it lets us get the opentype, truetype and web + ;; fonts all in one download. The zip archive releases separate the + ;; opentype, truetype and web fonts into three separate archives. + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/IBM/plex") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ddc3471m2jhbdq7cfxnimsi4v31n69xlw8rxd2hyphyg79nqfrl")))) + (build-system font-build-system) + (outputs '("out" "ttf" "woff")) + (synopsis "IBM Plex typeface") + (description + "This package provides the Plex font family. It comes in a Sans, Serif, Mono and Sans Condensed, all with roman and true italics. The fonts have been designed to work well in user interface (UI) environments as well as other mediums.") - (license license:silofl1.1))) + (home-page "https://github.com/IBM/plex") + (license license:silofl1.1)))) (define-public font-lilex (package |
