aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/lightning.scm
blob: 58296003cb37a9fa546975ca04703e89d92c3930 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2013 Ludovic Courtès <ludo@gnu.org>
;;;
;;; This file is part of GNU Guix.
;;;
;;; GNU Guix is free software; you can redistribute it and/or modify it
;;; under the terms of the GNU General Public License as published by
;;; the Free Software Foundation; either version 3 of the License, or (at
;;; your option) any later version.
;;;
;;; GNU Guix is distributed in the hope that it will be useful, but
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
;;; GNU General Public License for more details.
;;;
;;; You should have received a copy of the GNU General Public License
;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.

(define-module (gnu packages lightning)
  #:use-module (guix packages)
  #:use-module (guix download)
  #:use-module (guix build-system gnu)
  #:use-module (guix licenses))

(define-public lightning
  (package
    (name "lightning")
    (version "2.0.5")
    (source (origin
             (method url-fetch)
             (uri (string-append "mirror://gnu/lightning/lightning-"
                                 version ".tar.gz"))
             (sha256
              (base32
               "0jm9a8ddxc1v9hyzyv4ybg37fjac2yjqv1hkd262wxzqms36mdk5"))))
    (build-system gnu-build-system)
    (synopsis "Library for generating assembly code at runtime")
    (description
     "GNU Lightning is a library that generates assembly language code at
run-time.  Thus, it is useful in creating Just-In-Time compilers.  It
abstracts over the target CPU by exposing a standardized RISC instruction set
to the clients.")
    (home-page "http://www.gnu.org/software/lightning/")
    (license gpl3+)))
: Support cross-compilation.Philip McGrath 2022-09-04gnu: chez-scheme: Make bootfiles regular inputs.Philip McGrath 2022-09-04gnu: racket: Update to 8.6.Philip McGrath 2022-09-04gnu: chez-scheme: Fix use of "/bin/sh".Philip McGrath 2022-09-04gnu: stex: Fix read-only gifs and math directories.Philip McGrath 2022-09-04gnu: stex: Update to 1.2.2-2.afa6075.Philip McGrath 2022-05-22gnu: chez-scheme-bootstrap-bootfiles: Fix typo in description.Tobias Geerinckx-Rice 2022-05-22gnu: stex-bootstrap: Fix typo in synopsis.Tobias Geerinckx-Rice 2022-05-12gnu: chez-scheme-for-system: Adjust for bytecode backend.Philip McGrath 2022-05-12gnu: chez-scheme-for-racket: Fix supported systems.Philip McGrath 2022-05-12gnu: chez-upstream-features-for-system: Improve implementation.Philip McGrath 2022-05-12gnu: stex: Get machine type dynamically.Philip McGrath 2022-05-12gnu: chez-scheme: Refactor configure phase and fix '--threads'.Philip McGrath 2022-05-12gnu: chez-scheme: Refactor documentation phases.Philip McGrath 2022-05-12gnu: chez-scheme: Update to 9.5.8.Philip McGrath 2022-05-12gnu: racket: Update to 8.5.Philip McGrath 2022-03-08gnu: stex-bootstrap: Guard against unsupported systems.Liliana Marie Prikler 2022-03-04gnu: chez: Add 'chez-scheme-for-system'.Philip McGrath 2022-03-04gnu: Add chez-scheme-for-racket.Philip McGrath 2022-03-04gnu: chez-mit: Support chez-scheme-for-racket.Philip McGrath 2022-03-04gnu: chez-scheme: Explicitly package bootstrap bootfiles.Philip McGrath 2022-03-04gnu: Add chez-nanopass.Philip McGrath 2022-03-04gnu: Add stex.Philip McGrath 2022-03-04gnu: chez-scheme: Use new package style.Philip McGrath 2022-03-04gnu: chez-scheme: Use shared zlib and lz4.Philip McGrath 2022-03-04gnu: chez-scheme: Use "lib/chez-scheme" for search path.Philip McGrath 2022-03-04gnu: chez-scheme: Use new style for Chez packages.Philip McGrath 2022-03-04gnu: chez: Add utilities for Chez machine types.Philip McGrath 2022-03-04gnu: racket: Move Chez bootfiles to (gnu packages chez).Philip McGrath 2022-01-09gnu: chez-scheme: Update to 9.5.6.Tobias Geerinckx-Rice 2021-12-13gnu: Simplify package inputs.Ludovic Courtès 2021-11-22gnu: chez-scheme: Add missing inputs.Guillaume Le Vaillant