gnu: Add font-adobe-source-sans-pro.

* gnu/packages/fonts.scm (font-adobe-source-sans-pro): New variable.

Signed-off-by: Leo Famulari <leo@famulari.name>
master
Jens M 2018-11-08 21:03:56 +13:00 committed by Leo Famulari
parent 7fafdadd42
commit 27e65afc10
No known key found for this signature in database
GPG Key ID: 2646FA30BACA7F08
1 changed files with 26 additions and 0 deletions

View File

@ -23,6 +23,7 @@
;;; Copyright © 2017 Mohammed Sadiq <sadiq@sadiqpk.org>
;;; Copyright © 2018 Charlie Ritter <chewzerita@posteo.net>
;;; Copyright © 2018 Gabriel Hondet <gabrielhondet@gmail.com>
;;; Copyright © 2019 Jens Mølgaard <jens@zete.tk>
;;;
;;; This file is part of GNU Guix.
;;;
@ -857,6 +858,31 @@ Powerline support.")
designed to work well in user interface environments.")
(license license:silofl1.1)))
(define-public font-adobe-source-sans-pro
(package
(name "font-adobe-source-sans-pro")
(version "2.040R-ro-1.090R-it")
(source (origin
(method url-fetch)
(uri (string-append
"https://github.com/adobe-fonts/source-sans-pro/archive/"
(regexp-substitute/global
;; The upstream tag uses "/" between the roman and italic
;; versions, so substitute our "-" separator here.
#f "R-ro-" version 'pre "R-ro/" 'post) ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"1wpbhd2idps53ph8rg1mhr3vz4lsgbpjprcq10nliwcxdz9d8lv0"))))
(build-system font-build-system)
(home-page "https://github.com/adobe-fonts/source-sans-pro")
(synopsis
"Sans serif font family for user interface environments")
(description
"Source Sans Pro is a set of OpenType fonts that have been designed to
work well in user interface (UI) environments.")
(license license:silofl1.1)))
(define-public font-fira-mono
(package
(name "font-fira-mono")