diff options
author | Marius Bakke <mbakke@fastmail.com> | 2018-03-08 21:21:05 +0100 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2018-03-08 21:21:05 +0100 |
commit | d8fa1890c705ca566a56b69a4880a10dc7cf0098 (patch) | |
tree | c3f220949e5364d981a4895477249ad46852eea0 /gnu/packages/fonts.scm | |
parent | 5de561a79634e0814ea22f1cfece9a09efa120be (diff) | |
parent | fee7f8a94ec64943109ba9c37f75c28749fb18bd (diff) | |
download | guix-d8fa1890c705ca566a56b69a4880a10dc7cf0098.tar guix-d8fa1890c705ca566a56b69a4880a10dc7cf0098.tar.gz |
Merge branch 'master' into staging
Diffstat (limited to 'gnu/packages/fonts.scm')
-rw-r--r-- | gnu/packages/fonts.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm index 8af4f8dc83..aa9e466ebb 100644 --- a/gnu/packages/fonts.scm +++ b/gnu/packages/fonts.scm @@ -21,6 +21,7 @@ ;;; Copyright © 2017 Brendan Tildesley <brendan.tildesley@openmailbox.org> ;;; Copyright © 2017 Arun Isaac <arunisaac@systemreboot.net> ;;; Copyright © 2017 Mohammed Sadiq <sadiq@sadiqpk.org> +;;; Copyright © 2018 Charlie Ritter <chewzerita@posteo.net> ;;; ;;; 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") |