[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: gnu: Add aha.
From: |
guix-commits |
Subject: |
branch master updated: gnu: Add aha. |
Date: |
Sat, 22 Feb 2020 16:22:00 -0500 |
This is an automated email from the git hooks/post-receive script.
niedzejkob pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 24719e8 gnu: Add aha.
24719e8 is described below
commit 24719e8a0dc77bdbe637907501f4a337f571d5e2
Author: Wiktor Żelazny <address@hidden>
AuthorDate: Fri Oct 4 15:21:57 2019 +0200
gnu: Add aha.
* gnu/packages/textutils.scm (aha): new variable.
Signed-off-by: Jakub Kądziołka <address@hidden>
---
gnu/packages/textutils.scm | 31 +++++++++++++++++++++++++++++++
1 file changed, 31 insertions(+)
diff --git a/gnu/packages/textutils.scm b/gnu/packages/textutils.scm
index cc38ee2..1be7c69 100644
--- a/gnu/packages/textutils.scm
+++ b/gnu/packages/textutils.scm
@@ -18,6 +18,7 @@
;;; Copyright © 2018 Meiyo Peng <address@hidden>
;;; Copyright © 2019 Yoshinori Arai <address@hidden>
;;; Copyright © 2019 Mădălin Ionel Patrașcu <address@hidden>
+;;; Copyright © 2019 Wiktor Żelazny <address@hidden>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -1016,3 +1017,33 @@ instance one can add new syntax elements to markdown,
etc.
This package provides Python bindings.")
(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))))
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: gnu: Add aha.,
guix-commits <=