mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-26 20:49:29 -05:00
gnu: Add java-eclipse-core-variables.
* gnu/packages/java.scm (java-eclipse-core-variables): New variable.
This commit is contained in:
parent
e96060de20
commit
e8d0f7c8f9
1 changed files with 29 additions and 0 deletions
|
@ -2642,6 +2642,35 @@ (define-public java-eclipse-core-expressions
|
|||
with the @code{org.eclipse.core.expressions} module.")
|
||||
(license license:epl1.0)))
|
||||
|
||||
(define-public java-eclipse-core-variables
|
||||
(package
|
||||
(name "java-eclipse-core-variables")
|
||||
(version "3.3.0")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://repo1.maven.org/maven2/"
|
||||
"org/eclipse/platform/org.eclipse.core.variables/"
|
||||
version "/org.eclipse.core.variables-"
|
||||
version "-sources.jar"))
|
||||
(sha256
|
||||
(base32
|
||||
"12dirh03zi4n5x5cj07vzrhkmnqy6h9q10h9j605pagmpmifyxmy"))))
|
||||
(build-system ant-build-system)
|
||||
(arguments
|
||||
`(#:tests? #f ; no tests included
|
||||
#:jar-name "eclipse-core-variables.jar"))
|
||||
(inputs
|
||||
`(("java-eclipse-equinox-common" ,java-eclipse-equinox-common)
|
||||
("java-eclipse-equinox-registry" ,java-eclipse-equinox-registry)
|
||||
("java-eclipse-equinox-preferences" ,java-eclipse-equinox-preferences)
|
||||
("java-eclipse-core-runtime" ,java-eclipse-core-runtime)
|
||||
("java-eclipse-osgi" ,java-eclipse-osgi)))
|
||||
(home-page "https://www.eclipse.org/platform")
|
||||
(synopsis "Eclipse core variables")
|
||||
(description "This package provides the Eclipse core variables module
|
||||
@code{org.eclipse.core.variables}.")
|
||||
(license license:epl1.0)))
|
||||
|
||||
(define-public java-commons-cli
|
||||
(package
|
||||
(name "java-commons-cli")
|
||||
|
|
Loading…
Reference in a new issue