mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: Add aha.
* gnu/packages/textutils.scm (aha): new variable. Signed-off-by: Jakub Kądziołka <kuba@kadziolka.net>
This commit is contained in:
parent
8017eb0ae8
commit
24719e8a0d
1 changed files with 31 additions and 0 deletions
|
@ -18,6 +18,7 @@
|
||||||
;;; Copyright © 2018 Meiyo Peng <meiyo.peng@gmail.com>
|
;;; Copyright © 2018 Meiyo Peng <meiyo.peng@gmail.com>
|
||||||
;;; Copyright © 2019 Yoshinori Arai <kumagusu08@gmail.com>
|
;;; Copyright © 2019 Yoshinori Arai <kumagusu08@gmail.com>
|
||||||
;;; Copyright © 2019 Mădălin Ionel Patrașcu <madalinionel.patrascu@mdc-berlin.de>
|
;;; Copyright © 2019 Mădălin Ionel Patrașcu <madalinionel.patrascu@mdc-berlin.de>
|
||||||
|
;;; Copyright © 2019 Wiktor Żelazny <wzelazny@vurv.cz>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -1016,3 +1017,33 @@ (define-public python-pandocfilters
|
||||||
|
|
||||||
This package provides Python bindings.")
|
This package provides Python bindings.")
|
||||||
(license license:bsd-3)))
|
(license license:bsd-3)))
|
||||||
|
|
||||||
|
(define-public aha
|
||||||
|
(package
|
||||||
|
(name "aha")
|
||||||
|
(version "0.5")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/theZiz/aha")
|
||||||
|
(commit version)))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0byml4rmpiaalwx69jcixl3yvpvwmwiss1jzgsqwshilb2p4qnmz"))
|
||||||
|
(file-name (git-file-name name version))))
|
||||||
|
(build-system gnu-build-system)
|
||||||
|
(arguments
|
||||||
|
'(#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(delete 'configure))
|
||||||
|
#:make-flags (list "CC=gcc"
|
||||||
|
(string-append "PREFIX="
|
||||||
|
(assoc-ref %outputs "out")))
|
||||||
|
;; no check target
|
||||||
|
#:tests? #f))
|
||||||
|
(home-page "https://github.com/theZiz/aha")
|
||||||
|
(synopsis "Converts terminal escape sequences to HTML")
|
||||||
|
(description "@command{aha} (Ansi Html Adapter) converts ANSI escape sequences
|
||||||
|
of a Unix terminal to HTML code.")
|
||||||
|
(license (list license:lgpl2.0+ license:mpl1.1))))
|
||||||
|
|
Loading…
Reference in a new issue