mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-28 14:01:29 -05:00
gnu: Add txt2tags.
* gnu/packages/textutils.scm (txt2tags): New variable. Signed-off-by: Christopher Baines <mail@cbaines.net>
This commit is contained in:
parent
0a982a19bf
commit
08199c69d4
1 changed files with 20 additions and 0 deletions
|
@ -68,6 +68,7 @@ (define-module (gnu packages textutils)
|
||||||
#:use-module (gnu packages pkg-config)
|
#:use-module (gnu packages pkg-config)
|
||||||
#:use-module (gnu packages python)
|
#:use-module (gnu packages python)
|
||||||
#:use-module (gnu packages python-build)
|
#:use-module (gnu packages python-build)
|
||||||
|
#:use-module (gnu packages python-check)
|
||||||
#:use-module (gnu packages python-xyz)
|
#:use-module (gnu packages python-xyz)
|
||||||
#:use-module (gnu packages readline)
|
#:use-module (gnu packages readline)
|
||||||
#:use-module (gnu packages ruby)
|
#:use-module (gnu packages ruby)
|
||||||
|
@ -972,6 +973,25 @@ (define-public python-editdistance
|
||||||
and Cython.")
|
and Cython.")
|
||||||
(license license:expat))))
|
(license license:expat))))
|
||||||
|
|
||||||
|
(define-public txt2tags
|
||||||
|
(package
|
||||||
|
(name "txt2tags")
|
||||||
|
(version "3.7")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (pypi-uri "txt2tags" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"12hpnvdy7dgarq6ini9jp7dp2zcmvpax04zbl3jb84kd423r75i7"))))
|
||||||
|
(build-system python-build-system)
|
||||||
|
(native-inputs (list python-tox))
|
||||||
|
(home-page "https://txt2tags.org")
|
||||||
|
(synopsis "Convert between markup languages")
|
||||||
|
(description
|
||||||
|
"txt2tags is a document generator. It reads a text file with minimal
|
||||||
|
markup and converts it to multiple formats.")
|
||||||
|
(license license:gpl2)))
|
||||||
|
|
||||||
(define-public go-github.com-mattn-go-runewidth
|
(define-public go-github.com-mattn-go-runewidth
|
||||||
(let ((commit "703b5e6b11ae25aeb2af9ebb5d5fdf8fa2575211")
|
(let ((commit "703b5e6b11ae25aeb2af9ebb5d5fdf8fa2575211")
|
||||||
(version "0.0.4")
|
(version "0.0.4")
|
||||||
|
|
Loading…
Reference in a new issue