From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:58527) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1d8Cim-0002M3-Ee for guix-patches@gnu.org; Tue, 09 May 2017 17:31:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1d8Cil-00031g-5T for guix-patches@gnu.org; Tue, 09 May 2017 17:31:04 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:60266) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1d8Cik-00030k-Mn for guix-patches@gnu.org; Tue, 09 May 2017 17:31:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1d8Cik-0000AB-I2 for guix-patches@gnu.org; Tue, 09 May 2017 17:31:02 -0400 Subject: bug#26861: [PATCH 30/31] gnu: Add jikes. Resent-Message-ID: From: Ricardo Wurmus Date: Tue, 9 May 2017 23:28:47 +0200 Message-Id: <20170509212848.14688-30-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 From: Ricardo Wurmus * gnu/packages/java.scm (jikes): New variable. --- gnu/packages/java.scm | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm index c0703ef6c..fe73608a2 100644 --- a/gnu/packages/java.scm +++ b/gnu/packages/java.scm @@ -59,6 +59,25 @@ #:use-module (srfi srfi-11) #:use-module (ice-9 match)) +(define-public jikes + (package + (name "jikes") + (version "1.22") + (source (origin + (method url-fetch) + (uri (string-append "mirror://sourceforge/jikes/Jikes/" + version "/jikes-" version ".tar.bz2")) + (sha256 + (base32 + "1qqldrp74pzpy5ly421srqn30qppmm9cvjiqdngk8hf47dv2rc0c")))) + (build-system gnu-build-system) + (home-page "http://jikes.sourceforge.net/") + (synopsis "Compiler for the Java language") + (description "Jikes is a compiler that translates Java source files as +defined in The Java Language Specification into the bytecoded instruction set +and binary format defined in The Java Virtual Machine Specification.") + (license license:ibmpl1.0))) + (define-public java-swt (package (name "java-swt") -- 2.12.2