diff options
| -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 |
