[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
09/11: gnu: font-jetbrains-mono: Update to 2.210.
From: |
guix-commits |
Subject: |
09/11: gnu: font-jetbrains-mono: Update to 2.210. |
Date: |
Sun, 15 Nov 2020 14:48:15 -0500 (EST) |
nckx pushed a commit to branch master
in repository guix.
commit 1d17a07eb8a927f1228b404b1c367f8d3a51852f
Author: Tobias Geerinckx-Rice <me@tobias.gr>
AuthorDate: Sun Nov 15 17:43:41 2020 +0100
gnu: font-jetbrains-mono: Update to 2.210.
* gnu/packages/fonts.scm (font-jetbrains-mono): Update to 2.210.
[source]: Download from GitHub.
[arguments]: Replace the ‘install-license-files’ phase.
---
gnu/packages/fonts.scm | 18 ++++++++++++------
1 file changed, 12 insertions(+), 6 deletions(-)
diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm
index 396e89a..8940b04 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -1761,24 +1761,30 @@ This package provides the TrueType fonts.")
(define-public font-jetbrains-mono
(package
(name "font-jetbrains-mono")
- (version "2.002")
+ (version "2.210")
(source
(origin
(method url-fetch)
(uri
- (string-append "https://download.jetbrains.com/fonts/"
- "JetBrainsMono-" version ".zip"))
+ (string-append "https://github.com/JetBrains/JetBrainsMono/releases/"
+ "download/v" version "/JetBrainsMono-" version ".zip"))
(sha256
- (base32 "0lcsl718jhkqgld1xqll7fsv8j968jlf292541fkqxwm8i5g93sn"))))
+ (base32 "19wbggnmqs3k1wdqy7l7imnx23g7hh159pl32nz3mzz8s8sqfdix"))))
(build-system font-build-system)
(arguments
`(#:phases
(modify-phases %standard-phases
(add-before 'install-license-files 'change-directory-to-archive-root
- ;; Find the LICENSE file outside of the default subdirectory.
+ ;; Find the license file outside of the default subdirectory.
(lambda _
(chdir "..")
- #t)))))
+ #t))
+ (replace 'install-license-files
+ (lambda* (#:key outputs #:allow-other-keys)
+ (let* ((out (assoc-ref outputs "out"))
+ (doc (string-append out "/share/doc/" ,name "-" ,version)))
+ (install-file "OFL.txt" doc)
+ #t))))))
(home-page "https://www.jetbrains.com/lp/mono/")
(synopsis "Mono typeface for developers")
(description
- branch master updated (ce18d88 -> 11305a1), guix-commits, 2020/11/15
- 01/11: gnu: rr: Fix typo., guix-commits, 2020/11/15
- 08/11: gnu: python-css-parser: Update to 1.0.6., guix-commits, 2020/11/15
- 05/11: gnu: python-css-parser: Improve description., guix-commits, 2020/11/15
- 03/11: gnu: python-bottle: Update to 0.12.19., guix-commits, 2020/11/15
- 02/11: gnu: rr: Update to 5.4.0., guix-commits, 2020/11/15
- 06/11: gnu: python-cloudscraper: Remove questionable message., guix-commits, 2020/11/15
- 11/11: gnu: perl-net-dns: Update to 1.28., guix-commits, 2020/11/15
- 10/11: gnu: python-scp: Update to 0.13.3., guix-commits, 2020/11/15
- 09/11: gnu: font-jetbrains-mono: Update to 2.210.,
guix-commits <=
- 07/11: gnu: python-cloudscraper: Update to 1.2.48., guix-commits, 2020/11/15
- 04/11: gnu: python-bottle: Use HTTPS home page., guix-commits, 2020/11/15