aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/lolcode.scm
blob: cdbff1f4b69cd019a9176d3a6795f19b19bbb8a5 (about) (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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2016 Nikita <nikita@n0.is>
;;; Copyright © 2019 Tobias Geerinckx-Rice <me@tobias.gr>
;;;
;;; 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 lolcode)
  #:use-module (gnu packages)
  #:use-module (gnu packages python)
  #:use-module (gnu packages readline)
  #:use-module (guix build-system cmake)
  #:use-module (guix git-download)
  #:use-module ((guix licenses) #:prefix license:)
  #:use-module (guix packages))

(define-public lci
  (package
    (name "lci")
    (version "0.11.2")
    (source
     (origin
       (method git-fetch)
       (uri (git-reference
             (url "https://github.com/justinmeza/lci")
             (commit (string-append "v" version))))
       (file-name (git-file-name name version))
       (sha256
        (base32 "0syw60b93iajgh91ffchirwwhm2kix2753ibx845kyrhzggmdh2l"))))
    (build-system cmake-build-system)
    (inputs
     `(("readline" ,readline)))
    (native-inputs
     `(("python-2" ,python-2)))         ; for the tests
    (synopsis "LOLCODE interpreter written in C")
    (description
     "@code{lci} is a LOLCODE interpreter written in C and is designed to be
correct, portable, fast, and precisely documented.
@enumerate
@item correct: Every effort has been made to test lci's conformance to the
LOLCODE language specification.  Unit tests come packaged with the lci source code.
@item portable: lci follows the widely ported ANSI C specification allowing it
to compile on a broad range of systems.
@item fast: Much effort has gone into producing simple and efficient code
whenever possible to the extent that the above points are not compromized.
@end enumerate")
    (home-page "http://lolcode.org/")
    (license license:gpl3+)))
an class='msg-avail'>...* etc/news.scm: Add spanish translation. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Miguel Ángel Arruga Vivas 2019-11-08news: Add 'de' translation....* etc/news.scm: Add new 'de' translation. Florian Pelz 2019-11-07news: Add entry for package transformation options in "guix graph"....* etc/news.scm: Add entry for "guix graph --with-input". Ludovic Courtès 2019-11-02news: Add 'de' translation....* etc/news.scm: Add 'de' translation. Florian Pelz 2019-10-28news: Fix typo....Reported by Eric Bavier <ericbavier@centurylink.net>. * etc/news.scm: Fix typo in English title of latest news item. Tobias Geerinckx-Rice 2019-10-27news: Add entry for /etc/guix/channels.scm....* etc/news.scm: Add entry to /etc/guix/channels.scm. Ludovic Courtès 2019-10-18news: Add CVE ID....* etc/news.scm: Add CVE ID for insecure permissions entry. Ludovic Courtès 2019-10-17news: Fix 'de' translation....* etc/news.scm: Add new 'de' translation. Florian Pelz 2019-10-16news: Fix ‘nl’ translation typo....* etc/news.scm: Fix typo. Tobias Geerinckx-Rice 2019-10-16news: Add 'de' translation....* etc/news.scm: Add new 'de' translation. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Florian Pelz 2019-10-16news: Add 'fr' translation....* etc/news.scm: Add 'fr' translation. Julien Lepiller 2019-10-16news: Add 'nl' translation....* etc/news.scm: Add 'nl' translation. Tobias Geerinckx-Rice 2019-10-16news: Add entry for security issue with /var/guix/profiles/per-user....* etc/news.scm: Add entry for security issue in multi-user setups. Ludovic Courtès 2019-09-28nls: Add ‘nl’ translation of news entries....* etc/news.scm: Add ‘nl’ translations. Tobias Geerinckx-Rice 2019-09-27nls: Update 'de' translation of news entries....* etc/news.scm: Improve 'de' translation for news entries. Florian Pelz 2019-09-27nls: Update 'de' translation of news entries....* etc/news.scm: Add 'de' translation for news entry titles. Florian Pelz 2019-09-26nls: Update 'fr' translation of news entries....* etc/news.scm: Add more 'fr' translations. Julien Lepiller 2019-09-24nls: Update 'de' translation of news entries....* etc/news.scm: Add more 'de' translations. Florian Pelz 2019-09-24news: Add entry for the glibc upgrade....* etc/news.scm: Add entry for 5f3f70391809f8791c55c05bd1646bc58508fa2c. Ludovic Courtès 2019-09-24news: Add entry for the reduced binary seed bootstrap....* etc/news.scm: Add entry for cdd3bcf03883d129581a79e6d6611b2afd3b277b. Ludovic Courtès 2019-09-23etc: Add channel news file....* etc/news.scm: New file. * Makefile.am (EXTRA_DIST): Add it. Ludovic Courtès