guix-commits
[Top][All Lists]
Advanced

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

06/23: gnu: Add java-fest-util.


From: julien lepiller
Subject: 06/23: gnu: Add java-fest-util.
Date: Thu, 2 Nov 2017 08:03:23 -0400 (EDT)

roptat pushed a commit to branch master
in repository guix.

commit 7a343e971a71f899e329004b70323af5296e059c
Author: Julien Lepiller <address@hidden>
Date:   Tue Oct 24 22:14:53 2017 +0200

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

diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm
index 2b07def..2df43d3 100644
--- a/gnu/packages/java.scm
+++ b/gnu/packages/java.scm
@@ -6374,3 +6374,26 @@ BeanShell dynamically executes standard Java syntax and 
extends it with common
 scripting conveniences such as loose types, commands, and method closures like
 those in Perl and JavaScript.")
     (license license:asl2.0)))
+
+(define-public java-fest-util
+  (package
+    (name "java-fest-util")
+    (version "1.2.5")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "https://github.com/alexruiz/fest-util/";
+                                  "archive/fest-util-" version ".tar.gz"))
+              (sha256
+               (base32
+                "05g6hljz5mdaakk8d7g32klbhz9bdwp3qlj6rdaggdidxs3x1sb8"))))
+    (build-system ant-build-system)
+    (arguments
+     `(#:jar-name "java-fest-util.jar"
+       #:source-dir "src/main/java"))
+    (native-inputs
+     `(("junit" ,java-junit)
+       ("hamcrest" ,java-hamcrest-core)))
+    (home-page "https://github.com/alexruiz/fest-util";)
+    (synopsis "FEST common utilities")
+    (description "Common utilities used in all FEST module.")
+    (license license:asl2.0)))



reply via email to

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