guix-commits
[Top][All Lists]
Advanced

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

01/02: gnu: Add font-adobe-source-sans-pro.


From: guix-commits
Subject: 01/02: gnu: Add font-adobe-source-sans-pro.
Date: Tue, 12 Feb 2019 18:41:40 -0500 (EST)

lfam pushed a commit to branch master
in repository guix.

commit 27e65afc10df2e6a7a20272b22a12404247f2585
Author: Jens M <address@hidden>
Date:   Thu Nov 8 21:03:56 2018 +1300

    gnu: Add font-adobe-source-sans-pro.
    
    * gnu/packages/fonts.scm (font-adobe-source-sans-pro): New variable.
    
    Signed-off-by: Leo Famulari <address@hidden>
---
 gnu/packages/fonts.scm | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm
index f77f9da..7dae798 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -23,6 +23,7 @@
 ;;; Copyright © 2017 Mohammed Sadiq <address@hidden>
 ;;; Copyright © 2018 Charlie Ritter <address@hidden>
 ;;; Copyright © 2018 Gabriel Hondet <address@hidden>
+;;; Copyright © 2019 Jens Mølgaard <address@hidden>
 ;;;
 ;;; 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")



reply via email to

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