guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

08/32: gnu: Add java-jansi.


From: julien lepiller
Subject: 08/32: gnu: Add java-jansi.
Date: Sat, 10 Feb 2018 13:05:11 -0500 (EST)

roptat pushed a commit to branch master
in repository guix.

commit a87ea1adcb86045abd25cec712a6a24223500a14
Author: Julien Lepiller <address@hidden>
Date:   Sat Nov 18 18:54:09 2017 +0100

    gnu: Add java-jansi.
    
    * gnu/packages/java.scm (java-jansi): New variable.
---
 gnu/packages/java.scm | 32 ++++++++++++++++++++++++++++++++
 1 file changed, 32 insertions(+)

diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm
index 1d4e18b..650abec 100644
--- a/gnu/packages/java.scm
+++ b/gnu/packages/java.scm
@@ -7966,3 +7966,35 @@ that is part of the SWT Tools project.")
     (description "Java-jansi-native contains the native library for the jansi
 frobnication library/framework.")
     (license license:asl2.0)))
+
+(define-public java-jansi
+  (package
+    (name "java-jansi")
+    (version "1.16")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append 
"https://github.com/fusesource/jansi/archive/";
+                                  "jansi-project-" version ".tar.gz"))
+              (sha256
+               (base32
+                "11kh3144i3fzp21dpy8zg52mjmsr214k7km9p8ly0rqk2px0qq2z"))))
+    (build-system ant-build-system)
+    (arguments
+     `(#:jar-name "jansi.jar"
+       #:source-dir "jansi/src/main/java"
+       #:test-dir "jansi/src/test"
+       #:phases
+       (modify-phases %standard-phases
+         (add-after 'check 'clear-term
+           (lambda _
+             (zero? (system* "echo" "-e" "\\e[0m")))))))
+    (inputs
+     `(("java-jansi-native" ,java-jansi-native)))
+    (native-inputs
+     `(("java-junit" ,java-junit)
+       ("java-hamcrest-core" ,java-hamcrest-core)))
+    (home-page "https://fusesource.github.io/jansi/";)
+    (synopsis "Portable ANSI escape sequences")
+    (description "Jansi is a Java library that allows you to use ANSI escape
+sequences to format your console output which works on every platform.")
+    (license license:asl2.0)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]