diff options
author | Andy Tai <atai@atai.org> | 2024-09-24 19:31:41 -0700 |
---|---|---|
committer | Zheng Junjie <zhengjunjie@iscas.ac.cn> | 2024-10-03 15:35:21 +0800 |
commit | 2afa5c76d5c369d6f15c1cbb08976aec2d812602 (patch) | |
tree | e798b1df06db151aec259a3525d1ca9bdfc2738c | |
parent | 308877be17b2c2c92d972e105e8cc6a782ab4c82 (diff) | |
download | guix-2afa5c76d5c369d6f15c1cbb08976aec2d812602.tar guix-2afa5c76d5c369d6f15c1cbb08976aec2d812602.tar.gz |
gnu: Add fontopia.
* gnu/packages/fontutils.scm (fontopia): New variable.
Change-Id: I8f9b51922af06f994955b755ec8345d42189cfd7
Signed-off-by: Zheng Junjie <zhengjunjie@iscas.ac.cn>
-rw-r--r-- | gnu/packages/fontutils.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/fontutils.scm b/gnu/packages/fontutils.scm index 3b6d4900f6..df448de973 100644 --- a/gnu/packages/fontutils.scm +++ b/gnu/packages/fontutils.scm @@ -62,6 +62,7 @@ #:use-module (gnu packages java) #:use-module (gnu packages linux) #:use-module (gnu packages man) + #:use-module (gnu packages mc) #:use-module (gnu packages ninja) #:use-module (gnu packages perl) #:use-module (gnu packages pkg-config) @@ -2056,6 +2057,29 @@ shaping (using HarfBuzz), and proper script itemization. As a result, Raqm can support most writing systems covered by Unicode.") (license license:expat))) + +(define-public fontopia + (package + (name "fontopia") + (version "2.0") + (source (origin + (method url-fetch) + (uri (string-append "mirror://gnu/fontopia/fontopia-" + version ".tar.gz")) + (sha256 + (base32 "0wv7bd7gdm1ma4xgq9av73ic3xhpwyszj6g6c6311xjk26xm9ahd")))) + (build-system gnu-build-system) + (inputs + (list gnudos)) + (home-page "https://www.gnu.org/software/fontopia/") + (synopsis "Text-based, console font editor") + (description + "GNU fontopia is an easy-to-use, text-based, console font editor. You can +edit the fonts that your GNU/Linux kernel is using to display your text on text- +based (vs graphical) terminals.") + (license license:gpl3+))) + + (define-public lcdf-typetools (package (name "lcdf-typetools") |