mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: Add java-plexus-compiler-api.
* gnu/packages/java.scm (java-plexus-compiler-api): New variable.
This commit is contained in:
parent
4f77ba17c6
commit
239126d48b
1 changed files with 29 additions and 0 deletions
|
@ -2710,6 +2710,35 @@ (define-public java-plexus-cipher
|
|||
and decryption.")
|
||||
(license license:asl2.0)))
|
||||
|
||||
(define-public java-plexus-compiler-api
|
||||
(package
|
||||
(name "java-plexus-compiler-api")
|
||||
(version "2.8.2")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://github.com/codehaus-plexus/plexus-compiler"
|
||||
"/archive/plexus-compiler-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0g3x26pymcdnfnwv2a1i57pd5s26f5zqfi1rdy98z1bn01klx25k"))))
|
||||
(build-system ant-build-system)
|
||||
(arguments
|
||||
`(#:jar-name "plexus-compiler-api.jar"
|
||||
#:source-dir "plexus-compiler-api/src/main/java"
|
||||
#:jdk ,icedtea-8
|
||||
#:test-dir "plexus-compiler-api/src/test"))
|
||||
(inputs
|
||||
`(("java-plexus-container-default" ,java-plexus-container-default)
|
||||
("java-plexus-util" ,java-plexus-utils)))
|
||||
(native-inputs
|
||||
`(("java-junit" ,java-junit)))
|
||||
(home-page "https://github.com/codehaus-plexus/plexus-compiler")
|
||||
(synopsis "Plexus Compilers component's API to manipulate compilers")
|
||||
(description "This package contains the API used by components to manipulate
|
||||
compilers.")
|
||||
(license (list license:asl2.0
|
||||
license:expat))))
|
||||
|
||||
(define-public java-asm
|
||||
(package
|
||||
(name "java-asm")
|
||||
|
|
Loading…
Reference in a new issue