From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:51962) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dCjot-0007Dx-0f for guix-patches@gnu.org; Mon, 22 May 2017 05:40:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dCjoo-0002Vd-4Y for guix-patches@gnu.org; Mon, 22 May 2017 05:40:07 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:57336) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dCjoo-0002VP-0b for guix-patches@gnu.org; Mon, 22 May 2017 05:40:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dCjon-0001nB-QD for guix-patches@gnu.org; Mon, 22 May 2017 05:40:01 -0400 Subject: bug#26966: [PATCH 12/22] gnu: Add jamvm. Resent-Message-ID: References: <20170517171905.7840-1-rekado@elephly.net> <20170517171905.7840-12-rekado@elephly.net> From: Roel Janssen In-reply-to: <20170517171905.7840-12-rekado@elephly.net> Date: Mon, 22 May 2017 11:39:00 +0200 Message-ID: MIME-Version: 1.0 Content-Type: text/plain 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: Ricardo Wurmus Cc: 26966@debbugs.gnu.org Ricardo Wurmus writes: > * gnu/packages/java.scm (jamvm): New variable. > --- > gnu/packages/java.scm | 7 +++++++ > 1 file changed, 7 insertions(+) > > diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm > index 3fd8e5ab6..f5bf2c624 100644 > --- a/gnu/packages/java.scm > +++ b/gnu/packages/java.scm > @@ -692,6 +692,13 @@ the standard javac executable. The tool runs on JamVM instead of SableVM."))) > ("libltdl" ,libltdl) > ("pkg-config" ,pkg-config)))))) > > +(define-public jamvm > + (package (inherit jamvm-bootstrap) > + (inputs > + `(("classpath" ,classpath-devel) > + ("ecj-javac-wrapper" ,ecj-javac-on-jamvm-wrapper) > + ("zlib" ,zlib))))) > + > (define-public java-swt > (package > (name "java-swt") LGTM! Kind regards, Roel Janssen