guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

07/08: gnu: Add IBM Plex font.


From: Ludovic Courtès
Subject: 07/08: gnu: Add IBM Plex font.
Date: Wed, 7 Mar 2018 05:22:50 -0500 (EST)

civodul pushed a commit to branch master
in repository guix.

commit 270750d440b4b2c5f88694b5abc2c2b48046d173
Author: Charlie Ritter <address@hidden>
Date:   Tue Mar 6 10:59:47 2018 -0500

    gnu: Add IBM Plex font.
    
    * gnu/packages/fonts.scm (font-ibm-plex): New variable.
    
    Co-authored-by: Ludovic Courtès <address@hidden>
---
 gnu/packages/fonts.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm
index 8af4f8d..aa9e466 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -21,6 +21,7 @@
 ;;; Copyright © 2017 Brendan Tildesley <address@hidden>
 ;;; Copyright © 2017 Arun Isaac <address@hidden>
 ;;; Copyright © 2017 Mohammed Sadiq <address@hidden>
+;;; Copyright © 2018 Charlie Ritter <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -55,6 +56,27 @@
   #:use-module (gnu packages python)
   #:use-module (gnu packages xorg))
 
+(define-public font-ibm-plex
+  (package
+    (name "font-ibm-plex")
+    (version "1.0.1")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "https://github.com/IBM/plex/releases/download/";
+                    "v" version "/OpenType.zip"))
+              (sha256
+               (base32
+                "0nzxw9z6waixslam248yr26ci3fbk83c7jf6m90hncnaj6zxx795"))))
+    (build-system font-build-system)
+    (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, 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)))
+
 (define-public font-inconsolata
   (package
     (name "font-inconsolata")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]