GNU bug report logs -
#77773
[PATCH] gnu: Add font-adwaita.
Previous Next
Reported by: Kurome <hunt31999 <at> gmail.com>
Date: Sun, 13 Apr 2025 06:35:05 UTC
Severity: normal
Tags: patch
Done: Ludovic Courtès <ludo <at> gnu.org>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
[Message part 1 (text/plain, inline)]
Your bug report
#77773: [PATCH] gnu: Add font-adwaita.
which was filed against the guix-patches package, has been closed.
The explanation is attached below, along with your original report.
If you require more details, please reply to 77773 <at> debbugs.gnu.org.
--
77773: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=77773
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
[Message part 3 (text/plain, inline)]
Kurome <hunt31999 <at> gmail.com> writes:
> * gnu/packages/fonts.scm (font-adwaita): New variable.
>
> Change-Id: Icbc77669f67f8cbf3d84e573e29dc9c418497f88
Applied with the change below, thanks!
Ludo'.
[Message part 4 (text/x-patch, inline)]
diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm
index a0d6106784..b8aba35890 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -140,8 +140,7 @@ (define-public font-adwaita
(install-license "sans")
(install-license "mono")))))))
(home-page "https://gitlab.gnome.org/GNOME/adwaita-fonts/")
- (synopsis
- "Variation of Inter, and Adwaita Mono, Iosevka customized to match Inter.")
+ (synopsis "GNOME Adwaita Fonts")
(description
"This package provides Adwaita Fonts, a variation of Inter, and Adwaita
Mono, Iosevka customized to match Inter.")
[Message part 5 (message/rfc822, inline)]
* gnu/packages/fonts.scm (font-adwaita): New variable.
Change-Id: Icbc77669f67f8cbf3d84e573e29dc9c418497f88
---
gnu/packages/fonts.scm | 39 +++++++++++++++++++++++++++++++++++++++
1 file changed, 39 insertions(+)
diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm
index 85f8a5f31b..a0d6106784 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -111,6 +111,45 @@ (define-module (gnu packages fonts)
#:use-module (gnu packages sdl)
#:use-module (gnu packages xorg))
+(define-public font-adwaita
+ (package
+ (name "font-adwaita")
+ (version "48.2")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://gitlab.gnome.org/GNOME/adwaita-fonts/")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1sk6kb6v4ims3jzyfh71mx2kmwv55idr2yd1xgxlqc9lk59zhymd"))))
+ (build-system font-build-system)
+ (arguments
+ (list
+ #:phases
+ #~(modify-phases %standard-phases
+ ;; Install font licenses instead of the buildsystem license.
+ (replace 'install-license-files
+ (lambda _
+ (let ((doc-dir (string-append #$output "/share/doc/"
+ #$name "-" #$version)))
+ (define (install-license form)
+ (install-file (string-append form "/LICENSE.md")
+ (string-append doc-dir "/" form)))
+ (install-license "sans")
+ (install-license "mono")))))))
+ (home-page "https://gitlab.gnome.org/GNOME/adwaita-fonts/")
+ (synopsis
+ "Variation of Inter, and Adwaita Mono, Iosevka customized to match Inter.")
+ (description
+ "This package provides Adwaita Fonts, a variation of Inter, and Adwaita
+ Mono, Iosevka customized to match Inter.")
+ ;; Buildsystem and shell scripts are under the GPL, but fonts themselves are
+ ;; under OFL-1.1.
+ ;; https://gitlab.gnome.org/GNOME/adwaita-fonts/-/issues/14
+ (license license:silofl1.1)))
+
(define-public font-arapey
(let ((commit "28fa45c7f31afe62f577b0b857570ab0326b9113")
(revision "1"))
--
2.49.0
This bug report was last modified 35 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.