summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorRicardo Wurmus <rekado@elephly.net>2017-05-09 13:55:23 +0200
committerRicardo Wurmus <rekado@elephly.net>2017-05-15 22:33:15 +0200
commit65214c872a2c75f51e2243b5fee1ecdeebce10b3 (patch)
tree7625fe0126342ae4c78413cfdd9aa67568b49c97 /gnu
parentfbaf09ebf2f811a983d1d9d48005d662818bddd5 (diff)
gnu: Add java-eclipse-equinox-app.
* gnu/packages/java.scm (java-eclipse-equinox-app): New variable.
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/java.scm28
1 files changed, 28 insertions, 0 deletions
diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm
index 7666138aba8..8a7af2d4963 100644
--- a/gnu/packages/java.scm
+++ b/gnu/packages/java.scm
@@ -2472,6 +2472,34 @@ specification.")
2472registry.") 2472registry.")
2473 (license license:epl1.0))) 2473 (license license:epl1.0)))
2474 2474
2475(define-public java-eclipse-equinox-app
2476 (package
2477 (name "java-eclipse-equinox-app")
2478 (version "1.3.400")
2479 (source (origin
2480 (method url-fetch)
2481 (uri (string-append "https://repo1.maven.org/maven2/"
2482 "org/eclipse/platform/org.eclipse.equinox.app/"
2483 version "/org.eclipse.equinox.app-"
2484 version "-sources.jar"))
2485 (sha256
2486 (base32
2487 "0nhvbp93y203ar7y59gb0mz3w2d3jlqhr0c9hii9bcfpmr7imdab"))))
2488 (build-system ant-build-system)
2489 (arguments
2490 `(#:tests? #f ; no tests included
2491 #:jar-name "eclipse-equinox-app.jar"))
2492 (inputs
2493 `(("java-eclipse-equinox-common" ,java-eclipse-equinox-common)
2494 ("java-eclipse-equinox-registry" ,java-eclipse-equinox-registry)
2495 ("java-eclipse-osgi" ,java-eclipse-osgi)
2496 ("java-osgi-service-event" ,java-osgi-service-event)))
2497 (home-page "http://www.eclipse.org/equinox/")
2498 (synopsis "Equinox application container")
2499 (description "This package provides the Equinox application container for
2500Eclipse.")
2501 (license license:epl1.0)))
2502
2475(define-public java-commons-cli 2503(define-public java-commons-cli
2476 (package 2504 (package
2477 (name "java-commons-cli") 2505 (name "java-commons-cli")