Merge branch 'staging' into core-updates
[jackhill/guix/guix.git] / gnu / packages / kawa.scm
CommitLineData
47f2168b
CZ
1;;; GNU Guix --- Functional package management for GNU
2;;; Copyright © 2019 Carlo Zancanaro <carlo@zancanaro.id.au>
3;;; Copyright © 2019 Ludovic Courtès <ludo@gnu.org>
4;;;
5;;; This file is part of GNU Guix.
6;;;
7;;; GNU Guix is free software; you can redistribute it and/or modify it
8;;; under the terms of the GNU General Public License as published by
9;;; the Free Software Foundation; either version 3 of the License, or (at
10;;; your option) any later version.
11;;;
12;;; GNU Guix is distributed in the hope that it will be useful, but
13;;; WITHOUT ANY WARRANTY; without even the implied warranty of
14;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15;;; GNU General Public License for more details.
16;;;
17;;; You should have received a copy of the GNU General Public License
18;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
19
20(define-module (gnu packages kawa)
21 #:use-module (guix packages)
22 #:use-module (guix download)
23 #:use-module (guix build-system gnu)
24 #:use-module ((guix licenses) #:prefix license:)
25 #:use-module (gnu packages java))
26
27(define-public kawa
28 (package
29 (name "kawa")
30 (version "3.0")
31 (source
32 (origin
33 (method url-fetch)
34 (uri (string-append "mirror://gnu/kawa/kawa-" version ".tar.gz"))
35 (sha256
36 (base32
37 "1k9qpydc64ar4aqyg3q7jmmxy503ayj85227qfhc5n6ngchqavhy"))))
38 (build-system gnu-build-system)
39 (arguments
40 `(#:parallel-build? #f
41 #:parallel-tests? #f))
42 (inputs
43 `(("icedtea" ,icedtea-8 "jdk")))
44 (home-page "https://www.gnu.org/software/kawa/")
45 (synopsis "Java framework and implementation of Scheme, Elisp, and more")
46 (description
47 "GNU Kawa is an implementation of the Scheme programming language that
48is built on top of the Java platform. It is thus conveniently integrated
49with Java and benefits from this by having a compiler, optional static
50typing, and so on. Kawa also serves as a framework for implementing other
51programming languages on the Java platform. Included in Kawa is qexo, a
52partial implementation of XQuery in Java.")
53 (license license:expat)))