guix-commits
[Top][All Lists]
Advanced

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

65/104: gnu: Add java-picocli.


From: guix-commits
Subject: 65/104: gnu: Add java-picocli.
Date: Sun, 17 May 2020 11:36:42 -0400 (EDT)

nckx pushed a commit to branch core-updates
in repository guix.

commit bbcabb8f06d71aba9fb922258acba6b4d1e280c4
Author: Julien Lepiller <address@hidden>
AuthorDate: Sat May 16 15:59:39 2020 +0200

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

diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm
index 071b975..fc1f7d1 100644
--- a/gnu/packages/java.scm
+++ b/gnu/packages/java.scm
@@ -11943,3 +11943,28 @@ involving one or more shared resources having ACID 
(Atomicity, Consistency,
 Isolation and Durability) properties.")
     ;; either gpl2 only with classpath exception or cddl.
     (license (list license:gpl2 license:cddl1.0))))
+
+(define-public java-picocli
+  (package
+    (name "java-picocli")
+    (version "4.3.2")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                     (url "https://github.com/remkop/picocli";)
+                     (commit (string-append "v" version))))
+              (sha256
+               (base32
+                "1sxp6rxjfgjd98ly14b3d15dvxkm5wg4g46w12jyhmr0kmkaca3c"))))
+    (build-system ant-build-system)
+    (arguments
+     `(#:jar-name "picocli.jar"
+       #:source-dir "src/main/java"
+       ;; Tests require missing dependencies (junitparams, system-rules)
+       #:tests? #f))
+    (home-page "https://picocli.info";)
+    (synopsis "REPL for the JVM")
+    (description "Picocli is a framework for building command line applications
+for the JVM.  It supports colors, autocompletion, subcommands, and more.  
Written
+in Java, usable from Groovy, Kotlin, Scala, etc.")
+    (license license:asl2.0)))



reply via email to

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