diff options
author | Kurome <hunt31999@gmail.com> | 2025-07-08 11:01:31 +0900 |
---|---|---|
committer | 宋文武 <iyzsong@member.fsf.org> | 2025-07-12 19:47:06 +0800 |
commit | 54cf82127b79e694c469179aca571c57e10a6339 (patch) | |
tree | bac4ac3da85f56d487d2151debccb3cd4a060fc5 | |
parent | a9e8c679b6626040f37e9cd8e2690bcfb82a9990 (diff) |
gnu: font-adwaita: Update to 49.0.
Build scripts now are under the OFL license too.
* gnu/packages/fonts.scm (font-adwaita): Update to 49.0.
[arguments]: Remove install-license-files phase.
Closes: #1087
Change-Id: Iafa3d762e9451d399cb12fc9bc632e907bf603b2
Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
-rw-r--r-- | gnu/packages/fonts.scm | 21 |
1 files changed, 2 insertions, 19 deletions
diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm index ad9857c1fb..7462821608 100644 --- a/gnu/packages/fonts.scm +++ b/gnu/packages/fonts.scm @@ -115,7 +115,7 @@ (define-public font-adwaita (package (name "font-adwaita") - (version "48.2") + (version "49.0") (source (origin (method git-fetch) @@ -124,30 +124,13 @@ (commit version))) (file-name (git-file-name name version)) (sha256 - (base32 "1sk6kb6v4ims3jzyfh71mx2kmwv55idr2yd1xgxlqc9lk59zhymd")))) + (base32 "0hjir1961ag5d91l1x7pq2lsak4cny7mvsi8cvrqmd83pzy8cw0p")))) (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 "GNOME Adwaita Fonts") (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 |