From fcec43e6a60081c2041f5827f22bcccec3c17bfd Mon Sep 17 00:00:00 2001 From: Sergiu Ivanov Date: Fri, 30 Apr 2021 22:20:16 +0200 Subject: [PATCH] Add font-montserrat. --- gnu/packages/fonts.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm index b78c46b0f8..8c9b4b68ce 100644 --- a/gnu/packages/fonts.scm +++ b/gnu/packages/fonts.scm @@ -39,6 +39,7 @@ ;;; Copyright © 2020 Tim Van den Langenbergh ;;; Copyright © 2020 Nicolò Balzarotti ;;; Copyright © 2021 Antoine Côté +;;; Copyright © 2021 Sergiu Ivanov ;;; ;;; This file is part of GNU Guix. ;;; @@ -2156,3 +2157,25 @@ suitable for a wide range of uses.") (description "Cozette is a 6x13px (bounding box) bitmap font based on Dina and heavily inspired by Creep.") (license license:expat))) + +(define-public font-montserrat + (package + (name "font-montserrat") + (version "7.210") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/JulietaUla/Montserrat") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0jn1yvfamq5xazw85sfnxgriji60g7mkss9mkf8d0117vdk838bn")))) + (build-system font-build-system) + (home-page "https://github.com/JulietaUla/Montserrat") + (synopsis "The Montserrat font") + (description "The old posters and signs in the traditional Montserrat +neighborhood of Buenos Aires inspired Julieta Ulanovsky to design this +typeface and rescue the beauty of urban typography that emerged in the first +half of the twentieth century.") + (license license:silofl1.1))) -- 2.31.1