mirror of
git://git.savannah.gnu.org/guix.git
synced 2023-12-14 03:33:07 +01:00
gnu: Add java-eclipse-core-filesystem.
* gnu/packages/java.scm (java-eclipse-core-filesystem): New variable.
This commit is contained in:
parent
6a7f7e49b3
commit
b3806a1506
1 changed files with 27 additions and 0 deletions
|
@ -2586,6 +2586,33 @@ the module @code{org.eclipse.equinox.preferences}.")
|
|||
module @code{org.eclipse.core.runtime}.")
|
||||
(license license:epl1.0)))
|
||||
|
||||
(define-public java-eclipse-core-filesystem
|
||||
(package
|
||||
(name "java-eclipse-core-filesystem")
|
||||
(version "1.6.1")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://repo1.maven.org/maven2/"
|
||||
"org/eclipse/platform/org.eclipse.core.filesystem/"
|
||||
version "/org.eclipse.core.filesystem-"
|
||||
version "-sources.jar"))
|
||||
(sha256
|
||||
(base32
|
||||
"0km1bhwjim4rfy3pkvjhvy31kgsyf2ncx0mlkmbf5n6g57pphdyj"))))
|
||||
(build-system ant-build-system)
|
||||
(arguments
|
||||
`(#:tests? #f ; no tests included
|
||||
#:jar-name "eclipse-core-filesystem.jar"))
|
||||
(inputs
|
||||
`(("java-eclipse-equinox-common" ,java-eclipse-equinox-common)
|
||||
("java-eclipse-equinox-registry" ,java-eclipse-equinox-registry)
|
||||
("java-eclipse-osgi" ,java-eclipse-osgi)))
|
||||
(home-page "https://www.eclipse.org/")
|
||||
(synopsis "Eclipse core file system")
|
||||
(description "This package provides the Eclipse core file system with the
|
||||
module @code{org.eclipse.core.filesystem}.")
|
||||
(license license:epl1.0)))
|
||||
|
||||
(define-public java-commons-cli
|
||||
(package
|
||||
(name "java-commons-cli")
|
||||
|
|
Loading…
Reference in a new issue