[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#67808] [PATCH 2/5] gnu: Add font-jetbrains-mono-nerd-font
From: |
Saku Laesvuori |
Subject: |
[bug#67808] [PATCH 2/5] gnu: Add font-jetbrains-mono-nerd-font |
Date: |
Wed, 13 Dec 2023 10:02:35 +0200 |
* gnu/packages/fonts.scm (font-jetbrains-mono-nerd-font): New variable.
Change-Id: I52e3e3fda5fa83b6b0e865b9e56f008f91a4465c
---
gnu/packages/fonts.scm | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm
index 813367be8a..f88a715fae 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -59,6 +59,7 @@
;;; Copyright © 2023 Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
;;; Copyright © 2023 chris <chris@bumblehead.com>
;;; Copyright © 2023 Luis Felipe López Acevedo <sirgazil@zoho.com>
+;;; Copyright © 2023 Saku Laesvuori <saku@laesvuori.fi>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -2526,6 +2527,29 @@ (define-public font-jetbrains-mono
in small sizes, the text looks crisper.")
(license license:asl2.0)))
+(define-public font-jetbrains-mono-nerd-font
+ (package
+ (name "font-jetbrains-mono-nerd-font")
+ (version "3.1.1")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append
+ "https://github.com/ryanoasis/nerd-fonts/releases/"
+ "download/v" version "/JetBrainsMono.tar.xz"))
+ (sha256
+ (base32
+ "1f8xi8kgyik59ahjm3pcrb2s02c9a9i6kwf5b4651zpjmjy5l8lj"))))
+ (build-system font-build-system)
+ (arguments '(#:license-file-regexp "^OFL\\.txt$"))
+ (home-page "https://nerdfonts.com")
+ (synopsis "Mono typeface for developers with Nerd Fonts patching")
+ (description
+ "JetBrains Mono is a font family dedicated to developers. JetBrains
+Mono’s typeface forms are simple and free from unnecessary details. Rendered
+in small sizes, the text looks crisper. Nerd Fonts patching adds a high number
+of extra glyphs.")
+ (license license:silofl1.1)))
+
(define-public font-juliamono
(package
(name "font-juliamono")
--
2.41.0
- [bug#67808] [PATCH 1/5] guix: build-system: font: Accept license-file-regexp keyword argument, Saku Laesvuori, 2023/12/13
- [bug#67808] [PATCH 2/5] gnu: Add font-jetbrains-mono-nerd-font,
Saku Laesvuori <=
- [bug#67808] [PATCH 4/5] gnu: font-jetbrains-mono: Use the correct license., Saku Laesvuori, 2023/12/13
- [bug#67808] [PATCH 3/5] gnu: font-jetbrains-mono: Use license-file-regexp argument, Saku Laesvuori, 2023/12/13
- [bug#67808] [PATCH 5/5] gnu: font-jetbrains-mono: Update to 2.304, Saku Laesvuori, 2023/12/13
- [bug#67808] [PATCH 1/5] guix: build-system: font: Accept license-file-regexp keyword argument, Simon South, 2023/12/13
- [bug#67808] [PATCH v2 0/1] Add JetBrainsMono Nerd Font, Saku Laesvuori, 2023/12/14
- [bug#67808] [PATCH v3 0/3] Add procedure for patching Nerd Fonts, Saku Laesvuori, 2023/12/14
- [bug#67808] [PATCH v3 1/3] gnu: Add nerd-font-patcher, Saku Laesvuori, 2023/12/14