diff options
author | Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> | 2023-07-01 15:46:58 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-01 15:48:04 +0200 |
commit | a02e3503e5f46427f992cb33df265d08ec1d8d2b (patch) | |
tree | 0fb9e016d4c214e50cfabe7f66f249150aa8f471 /gnu/packages | |
parent | 889e1dbae3b0d4ac2300b524b3dd6b8f0499ff5e (diff) |
gnu: Add font-velvetyne-jgs.
* gnu/packages/fonts.scm (font-velvetyne-jgs): New variable.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/fonts.scm | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm index bc1128c874..1c4cccb6ae 100644 --- a/gnu/packages/fonts.scm +++ b/gnu/packages/fonts.scm @@ -56,6 +56,7 @@ ;;; Copyright © 2023 Ahmad Draidi <a.r.draidi@redscript.org> ;;; Copyright © 2023 Arnaud Lechevallier <arnaud.lechevallier@free.fr> ;;; Copyright © 2023 gemmaro <gemmaro.dev@gmail.com> +;;; Copyright © 2023 Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> ;;; ;;; This file is part of GNU Guix. ;;; @@ -3259,6 +3260,35 @@ minor tweaks to improve readability (a matter of taste of course). Most characters are just 4px wide, which is brilliant for low dpi(90-120) displays.") (license license:silofl1.1))) +(define-public font-velvetyne-jgs + ;; There are no releases nor tags. + (let ((revision "1") + (commit "b1fe344c6ab4cb97aa9ceb09ba3b6056f826b040")) + (package + (name "font-velvetyne-jgs") + (version (git-version "1.0" revision commit)) + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://gitlab.com/velvetyne/jgs") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1hwaylgih66cqwcf68i2xdccrn0p0rbvmlz5f3mlzvm51s5pzqb8")))) + (build-system font-build-system) + (home-page "http://www.velvetyne.org/fonts/jgs-font") + (synopsis "Font designed especially for ASCII art") + (description + "The jgs font family can be used to combine several +characters to form contiguous lines. It contains several fonts: +@enumerate +@item jgs5 for sizes multiple of 1o (10px, 20px, 30px) +@item jgs7 for sizes multiple of 14 (14px, 28px, 42px) +@item jgs9 for sizes multiples of 18 (18px, 36px, 54px) +@end enumerate") + (license license:silofl1.1)))) + (define-public font-recursive (package (name "font-recursive") |