From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:34939) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hJ0qq-0002ur-6E for guix-patches@gnu.org; Tue, 23 Apr 2019 15:13:09 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hJ0qo-0001g9-BY for guix-patches@gnu.org; Tue, 23 Apr 2019 15:13:07 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:40839) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hJ0qm-0001es-Q6 for guix-patches@gnu.org; Tue, 23 Apr 2019 15:13:06 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hJ0qm-0007Lr-Em for guix-patches@gnu.org; Tue, 23 Apr 2019 15:13:04 -0400 Subject: [bug#35403] [PATCH] Add font-public-sans. Resent-Message-ID: Received: from eggs.gnu.org ([209.51.188.92]:34133) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hJ0pp-00028A-CC for guix-patches@gnu.org; Tue, 23 Apr 2019 15:12:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hJ0pn-0000Sm-BA for guix-patches@gnu.org; Tue, 23 Apr 2019 15:12:05 -0400 Received: from sender-of-o51.zoho.com ([135.84.80.216]:21217) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hJ0pm-00006J-VA for guix-patches@gnu.org; Tue, 23 Apr 2019 15:12:03 -0400 From: Jens O Molgaard Date: Wed, 24 Apr 2019 07:11:42 +1200 Message-ID: <87pnpcsfip.fsf@zete.tk> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" 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: 35403@debbugs.gnu.org --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Hello guix! Small patch to add the Public Sans font from the USWDS. -- Jens M=C3=B8lgaard --=-=-= Content-Type: text/x-patch Content-Disposition: inline; filename=0001-Add-font-public-sans.patch >From c8ce540b3ba10a508b4b573b6ecd1473bfc6c7e4 Mon Sep 17 00:00:00 2001 From: Jens M Date: Wed, 24 Apr 2019 05:06:38 +1200 Subject: [PATCH] Add font-public-sans. --- gnu/packages/fonts.scm | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm index 569a7f807e..8961f855af 100644 --- a/gnu/packages/fonts.scm +++ b/gnu/packages/fonts.scm @@ -1397,3 +1397,31 @@ files (TTF).") formatting.") (home-page "https://madmalik.github.io/mononoki/") (license license:silofl1.1))) + +(define-public font-public-sans + (package + (name "font-public-sans") + (version "1.0.0") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/uswds/public-sans.git") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "12ccj7ph3pg962d52d3slbvd44gwfm6bb2846dxyf1xc5h2iwhdv")) + (modules '((guix build utils))) + (snippet + '(begin + ;; remove versions of predecessor font + (delete-file-recursively "fonts/_archive") + #t)))) + (build-system font-build-system) + (home-page "https://public-sans.digital.gov/") + (synopsis + "Strong, neutral typeface for interfaces, text, and headings") + (description + "Public Sans is a strong, neutral, principles-driven, open-source +typeface for text or display based on Libre Franklin.") + (license license:silofl1.1))) -- 2.21.0 --=-=-=--