diff options
author | Kurome <hunt31999@gmail.com> | 2025-03-29 21:26:33 +0900 |
---|---|---|
committer | Zheng Junjie <z572@z572.online> | 2025-03-30 11:22:55 +0800 |
commit | 2e17b532ed659ed38c738f44f11c35a887bd31c0 (patch) | |
tree | b7f571e692c634e52aef88c7494e53f61cb36445 | |
parent | c3a2bf702b4c724f22cd3a46aae19ed7f208623e (diff) |
gnu: font-sarasa-gothic: update to 1.0.29.
* gnu/packages/fonts.scm (font-sarasa-gothic): Update to 1.0.29.
[arguments]: Use G-expressions.
Change-Id: Ica9f966b5bb0b0db69e240800394a0ea3f16531f
Signed-off-by: Zheng Junjie <z572@z572.online>
-rw-r--r-- | gnu/packages/fonts.scm | 25 |
1 files changed, 15 insertions, 10 deletions
diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm index 3048289ac0..9c7f50a838 100644 --- a/gnu/packages/fonts.scm +++ b/gnu/packages/fonts.scm @@ -2417,23 +2417,28 @@ weights and five widths in both Roman and Italic, plus variable fonts.") (define-public font-sarasa-gothic (package (name "font-sarasa-gothic") - (version "1.0.27") + (version "1.0.29") (source (origin (method url-fetch) (uri (string-append "https://github.com/be5invis/Sarasa-Gothic" - "/releases/download/v" version - "/Sarasa-TTC-" version ".7z")) + "/releases/download/v" + version + "/Sarasa-TTC-" + version + ".7z")) (sha256 - (base32 "19k11nl6sib8ms82jvvv23543p4xdzybgfflz2jxjim55w9d1v4y")))) + (base32 "1y82wp3rgm1xnn92f0jppgiqjsimdy83ljyh5q9dybzx3fp0x8w7")))) (build-system font-build-system) (arguments - `(#:phases (modify-phases %standard-phases - (replace 'unpack - (lambda* (#:key source #:allow-other-keys) - (mkdir "source") - (chdir "source") - (invoke "7z" "x" source)))))) + (list + #:phases + #~(modify-phases %standard-phases + (replace 'unpack + (lambda* (#:key source #:allow-other-keys) + (mkdir "source") + (chdir "source") + (invoke "7z" "x" source)))))) (native-inputs (list p7zip)) (home-page "https://github.com/be5invis/Sarasa-Gothic") (license license:silofl1.1) |