gnu: u-boot-rockpro64-rk3399: Fix freeze on boot.
[jackhill/guix/guix.git] / gnu / packages / esolangs.scm
CommitLineData
0510ca15
H
1;;; GNU Guix --- Functional package management for GNU
2;;; Copyright © 2020 Hendursaga <hendursaga@yahoo.com>
3;;;
4;;; This file is part of GNU Guix.
5;;;
6;;; GNU Guix is free software; you can redistribute it and/or modify it
7;;; under the terms of the GNU General Public License as published by
8;;; the Free Software Foundation; either version 3 of the License, or (at
9;;; your option) any later version.
10;;;
11;;; GNU Guix is distributed in the hope that it will be useful, but
12;;; WITHOUT ANY WARRANTY; without even the implied warranty of
13;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14;;; GNU General Public License for more details.
15;;;
16;;; You should have received a copy of the GNU General Public License
17;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
18
19(define-module (gnu packages esolangs)
20 #:use-module (gnu packages ncurses)
21 #:use-module (guix build-system cmake)
22 #:use-module (guix download)
23 #:use-module (guix git-download)
24 #:use-module ((guix licenses) #:prefix license:)
25 #:use-module (guix packages))
26
27(define-public cfunge
28 (package
29 (name "cfunge")
30 (version "0.9.0")
31 (source (origin
32 (method git-fetch)
33 (uri (git-reference
34 (url "https://github.com/VorpalBlade/cfunge")
35 (commit version)))
36 (file-name (git-file-name name version))
37 (sha256
38 (base32
39 "18ir0h10vxdb5jb57w5hjbgi8spjxg9x2148agadhhmbhsja02m7"))))
40 (build-system cmake-build-system)
41 (arguments
42 ;; The tests are not designed to be run and evaluated automatically.
43 '(#:tests? #f))
44 (inputs
45 `(("ncurses" ,ncurses)))
46 (home-page "https://github.com/VorpalBlade/cfunge")
47 (synopsis "Fast conforming Befunge93/98/109 interpreter in C")
48 (description "@command{cfunge} is a fast conforming Befunge93/98/109 interpreter
49written in C. It supports several @dfn{fingerprints} (opt-in language extensions
50identified by unique ID codes).")
51 (license license:gpl3)))