guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

11/26: gnu: Add jamvm-bootstrap.


From: Ricardo Wurmus
Subject: 11/26: gnu: Add jamvm-bootstrap.
Date: Mon, 22 May 2017 13:03:16 -0400 (EDT)

rekado pushed a commit to branch master
in repository guix.

commit 5f4402c7a374956e6e8a1e2dee0228916ccd2d7b
Author: Ricardo Wurmus <address@hidden>
Date:   Thu May 11 10:15:44 2017 +0200

    gnu: Add jamvm-bootstrap.
    
    * gnu/packages/java.scm (jamvm-bootstrap): New variable.
---
 gnu/packages/java.scm | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)

diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm
index b6d74c2..0faf2bd 100644
--- a/gnu/packages/java.scm
+++ b/gnu/packages/java.scm
@@ -462,6 +462,35 @@ language.")
     ;; GPLv2 or later, with special linking exception.
     (license license:gpl2+)))
 
+(define jamvm-bootstrap
+  (package
+    (name "jamvm")
+    (version "2.0.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "mirror://sourceforge/jamvm/jamvm/"
+                                  "JamVM%20" version "/jamvm-"
+                                  version ".tar.gz"))
+              (sha256
+               (base32
+                "1nl0zxz8y5x8gwsrm7n32bry4dx8x70p8z3s9jbdvs8avyb8whkn"))))
+    (build-system gnu-build-system)
+    (arguments
+     `(#:configure-flags
+       (list (string-append "--with-classpath-install-dir="
+                            (assoc-ref %build-inputs "classpath")))))
+    (inputs
+     `(("classpath" ,classpath-on-sablevm)
+       ("ecj-javac-wrapper" ,ecj-javac-wrapper)
+       ("zlib" ,zlib)))
+    (home-page "http://jamvm.sourceforge.net/";)
+    (synopsis "Small Java Virtual Machine")
+    (description "JamVM is a Java Virtual Machine conforming to the JVM
+specification edition 2 (blue book).  It is extremely small.  However, unlike
+other small VMs it supports the full spec, including object finalisation and
+JNI.")
+    (license license:gpl2+)))
+
 (define-public java-swt
   (package
     (name "java-swt")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]