mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 13:49:23 -05:00
gnu: Add fontopia.
* gnu/packages/fontutils.scm (fontopia): New variable. Change-Id: I8f9b51922af06f994955b755ec8345d42189cfd7 Signed-off-by: Zheng Junjie <zhengjunjie@iscas.ac.cn>
This commit is contained in:
parent
308877be17
commit
2afa5c76d5
1 changed files with 24 additions and 0 deletions
|
@ -62,6 +62,7 @@ (define-module (gnu packages fontutils)
|
||||||
#:use-module (gnu packages java)
|
#:use-module (gnu packages java)
|
||||||
#:use-module (gnu packages linux)
|
#:use-module (gnu packages linux)
|
||||||
#:use-module (gnu packages man)
|
#:use-module (gnu packages man)
|
||||||
|
#:use-module (gnu packages mc)
|
||||||
#:use-module (gnu packages ninja)
|
#:use-module (gnu packages ninja)
|
||||||
#:use-module (gnu packages perl)
|
#:use-module (gnu packages perl)
|
||||||
#:use-module (gnu packages pkg-config)
|
#:use-module (gnu packages pkg-config)
|
||||||
|
@ -2056,6 +2057,29 @@ (define-public libraqm
|
||||||
can support most writing systems covered by Unicode.")
|
can support most writing systems covered by Unicode.")
|
||||||
(license license:expat)))
|
(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
|
(define-public lcdf-typetools
|
||||||
(package
|
(package
|
||||||
(name "lcdf-typetools")
|
(name "lcdf-typetools")
|
||||||
|
|
Loading…
Reference in a new issue