diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2017-05-09 13:55:02 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2017-05-15 22:33:15 +0200 |
commit | fbaf09ebf2f811a983d1d9d48005d662818bddd5 (patch) | |
tree | 5cbc249c10cf3376fb48d548ef618d2cf5868bd3 /gnu | |
parent | 90368ad9d848f117568899142812d2b91b94b8f0 (diff) | |
download | patches-fbaf09ebf2f811a983d1d9d48005d662818bddd5.tar patches-fbaf09ebf2f811a983d1d9d48005d662818bddd5.tar.gz |
gnu: Add java-eclipse-equinox-registry.
* gnu/packages/java.scm (java-eclipse-equinox-registry): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/java.scm | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm index 2d03c6e928..7666138aba 100644 --- a/gnu/packages/java.scm +++ b/gnu/packages/java.scm @@ -2445,6 +2445,33 @@ specification.") (description "This package provides the Eclipse jobs mechanism.") (license license:epl1.0))) +(define-public java-eclipse-equinox-registry + (package + (name "java-eclipse-equinox-registry") + (version "3.6.100") + (source (origin + (method url-fetch) + (uri (string-append "https://repo1.maven.org/maven2/" + "org/eclipse/platform/org.eclipse.equinox.registry/" + version "/org.eclipse.equinox.registry-" + version "-sources.jar")) + (sha256 + (base32 + "1i9sgymh2fy5vdgk5y7s3qvrlbgh4l93ddqi3v4zmca7hwrlhf9k")))) + (build-system ant-build-system) + (arguments + `(#:tests? #f ; no tests included + #:jar-name "eclipse-equinox-registry.jar")) + (inputs + `(("java-eclipse-core-jobs" ,java-eclipse-core-jobs) + ("java-eclipse-equinox-common" ,java-eclipse-equinox-common) + ("java-eclipse-osgi" ,java-eclipse-osgi))) + (home-page "http://www.eclipse.org/equinox/") + (synopsis "Eclipse extension registry support") + (description "This package provides support for the Eclipse extension +registry.") + (license license:epl1.0))) + (define-public java-commons-cli (package (name "java-commons-cli") |