From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:38853) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ecpCz-0003PR-Gt for guix-patches@gnu.org; Sat, 20 Jan 2018 04:13:06 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ecpCw-0007tM-9i for guix-patches@gnu.org; Sat, 20 Jan 2018 04:13:05 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:55881) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ecpCw-0007t9-5y for guix-patches@gnu.org; Sat, 20 Jan 2018 04:13:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1ecpCv-0003HD-U4 for guix-patches@gnu.org; Sat, 20 Jan 2018 04:13:01 -0500 Subject: [bug#30183] [PATCH] gnu: Add font-fira-code. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:38801) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ecpCa-0003Hj-PB for guix-patches@gnu.org; Sat, 20 Jan 2018 04:12:42 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ecpCX-0007Zt-Ij for guix-patches@gnu.org; Sat, 20 Jan 2018 04:12:40 -0500 Received: from aibo.runbox.com ([91.220.196.211]:51512) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ecpCX-0007Ya-Ab for guix-patches@gnu.org; Sat, 20 Jan 2018 04:12:37 -0500 Received: from [10.9.9.211] (helo=mailfront11.runbox.com) by mailtransmit02.runbox with esmtp (Exim 4.86_2) (envelope-from ) id 1ecpCV-0007r4-Gk for guix-patches@gnu.org; Sat, 20 Jan 2018 10:12:35 +0100 From: ng0+guixpatches@n0.is Date: Sat, 20 Jan 2018 09:12:15 +0000 Message-Id: <20180120091215.10583-1-ng0+guixpatches@n0.is> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 30183@debbugs.gnu.org Cc: ng0 From: ng0 * gnu/packages/fonts.scm (font-fira-code): New variable. --- gnu/packages/fonts.scm | 25 ++++++++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm index 231f51fb3..87329ab83 100644 --- a/gnu/packages/fonts.scm +++ b/gnu/packages/fonts.scm @@ -7,7 +7,7 @@ ;;; Copyright © 2015 Eric Dvorsak ;;; Copyright © 2015, 2017 Ricardo Wurmus ;;; Copyright © 2015, 2016 Leo Famulari -;;; Copyright © 2016, 2017 ng0 +;;; Copyright © 2016, 2017, 2018 ng0 ;;; Copyright © 2016 Jookia <166291@gmail.com> ;;; Copyright © 2016 Eric Bavier ;;; Copyright © 2016 Dmitry Nikolaev @@ -888,6 +888,29 @@ designed to work well in user interface environments.") (description "This is the typeface used by Mozilla in Firefox OS.") (license license:silofl1.1))) +(define-public font-fira-code + (package + (name "font-fira-code") + (version "1.204") + (source (origin + (method url-fetch) + (uri (string-append "https://github.com/tonsky/FiraCode/archive/" + version ".tar.gz")) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "04ikn6p74wag3gb51g1cila6zncd6mhrmzjbzb25rinw53npwx0q")))) + (build-system font-build-system) + (home-page "http://mozilla.github.io/Fira/") + (synopsis "Monospaced font with programming ligatures") + (description + "Fira Code is an extension of the Fira Mono font containing a set of ligatures +for common programming multi-character combinations. This is just a font rendering +feature: underlying code remains ASCII-compatible. This helps to read and understand +code faster. For some frequent sequences like .. or //, ligatures allow us to +correct spacing.") + (license license:silofl1.1))) + (define-public font-awesome (package (name "font-awesome") -- 2.15.1