guix-patches
[Top][All Lists]
Advanced

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

bug#26861: [PATCH 31/31] gnu: Add classpath-minimal-0.93.


From: Ricardo Wurmus
Subject: bug#26861: [PATCH 31/31] gnu: Add classpath-minimal-0.93.
Date: Tue, 9 May 2017 23:28:48 +0200

From: Ricardo Wurmus <address@hidden>

* gnu/packages/java.scm (classpath-minimal-0.93): New variable.
---
 gnu/packages/java.scm | 35 +++++++++++++++++++++++++++++++++++
 1 file changed, 35 insertions(+)

diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm
index fe73608a2..447be65c9 100644
--- a/gnu/packages/java.scm
+++ b/gnu/packages/java.scm
@@ -78,6 +78,41 @@ 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)))
 
+;; This is the last version of GNU Classpath that does not require ecj.
+(define-public classpath-minimal-0.93
+  (package
+    (name "classpath-minimal")
+    (version "0.93")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "mirror://gnu/classpath/classpath-"
+                                  version ".tar.gz"))
+              (sha256
+               (base32
+                "0i99wf9xd3hw1sj2sazychb9prx8nadxh2clgvk3zlmb28v0jbfz"))))
+    (build-system gnu-build-system)
+    (arguments
+     `(#:configure-flags
+       (list "--with-jikes"
+             "--disable-Werror"
+             "--disable-gmp"
+             "--disable-gtk-peer"
+             "--disable-jni"
+             "--disable-plugin"
+             "--disable-dssi"
+             "--disable-alsa"
+             "--disable-gjdoc")))
+    (native-inputs
+     `(("jikes" ,jikes)
+       ("fastjar" ,fastjar)))
+    (home-page "https://www.gnu.org/software/classpath/";)
+    (synopsis "Essential libraries for Java")
+    (description " GNU Classpath is a project to create core class libraries
+for use with runtimes, compilers and tools for the Java programming
+language.")
+    ;; GPLv2 or later, with special linking exception.
+    (license license:gpl2+)))
+
 (define-public java-swt
   (package
     (name "java-swt")
-- 
2.12.2







reply via email to

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