From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:57123) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1d8Chz-0001WU-9T for guix-patches@gnu.org; Tue, 09 May 2017 17:30:17 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1d8Chx-0001iJ-Tb for guix-patches@gnu.org; Tue, 09 May 2017 17:30:15 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:60237) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1d8Chx-0001iD-PY for guix-patches@gnu.org; Tue, 09 May 2017 17:30:13 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1d8Chx-00005s-Kl for guix-patches@gnu.org; Tue, 09 May 2017 17:30:13 -0400 Subject: bug#26861: [PATCH 13/31] gnu: Add java-eclipse-equinox-preferences. Resent-Message-ID: From: Ricardo Wurmus Date: Tue, 9 May 2017 23:28:30 +0200 Message-Id: <20170509212848.14688-13-rekado@elephly.net> In-Reply-To: <20170509212848.14688-1-rekado@elephly.net> References: <20170509212848.14688-1-rekado@elephly.net> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 26861@debbugs.gnu.org Cc: Ricardo Wurmus * gnu/packages/java.scm (java-eclipse-equinox-preferences): New variable. --- gnu/packages/java.scm | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm index 75cbcaea6..9be5cffa8 100644 --- a/gnu/packages/java.scm +++ b/gnu/packages/java.scm @@ -2527,6 +2527,33 @@ registry.") Eclipse.") (license license:epl1.0))) +(define-public java-eclipse-equinox-preferences + (package + (name "java-eclipse-equinox-preferences") + (version "3.6.1") + (source (origin + (method url-fetch) + (uri (string-append "https://repo1.maven.org/maven2/" + "org/eclipse/platform/org.eclipse.equinox.preferences/" + version "/org.eclipse.equinox.preferences-" + version "-sources.jar")) + (sha256 + (base32 + "0k7w6c141sqym4fy3af0qkwpy4pdh2vsjpjba6rp5fxyqa24v0a2")))) + (build-system ant-build-system) + (arguments + `(#:tests? #f ; no tests included + #:jar-name "eclipse-equinox-preferences.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 "http://www.eclipse.org/equinox/") + (synopsis "Eclipse preferences mechanism") + (description "This package provides the Eclipse preferences mechanism with +the module @code{org.eclipse.equinox.preferences}.") + (license license:epl1.0))) + (define-public java-commons-cli (package (name "java-commons-cli") -- 2.12.2