mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 13:58:15 -05:00
gnu: Add java-picocli.
gnu/packages/java.scm (java-picocli): New variable.
This commit is contained in:
parent
523cbfbd55
commit
8ba990e69d
1 changed files with 25 additions and 0 deletions
|
@ -11943,3 +11943,28 @@ (define-public java-jboss-transaction-api-spec
|
||||||
Isolation and Durability) properties.")
|
Isolation and Durability) properties.")
|
||||||
;; either gpl2 only with classpath exception or cddl.
|
;; either gpl2 only with classpath exception or cddl.
|
||||||
(license (list license:gpl2 license:cddl1.0))))
|
(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)))
|
||||||
|
|
Loading…
Reference in a new issue