websocket: Oops, avoid looping.
[8sync.git] / guix.scm
1 ;;; 8sync --- Asynchronous programming for Guile
2 ;;; Copyright (C) 2016 Jan Nieuwenhuizen <janneke@gnu.org>
3 ;;; Copyright (C) 2017 Christopher Allan Webber <cwebber@dustycloud.org>
4 ;;;
5 ;;; This file is part of 8sync.
6 ;;; However, unlike most of 8sync, which is under the LGPLv3+, this
7 ;;; file in particular is licensed under GPLv3+.
8 ;;; Guix is also licensed under GPLv3+.
9 ;;;
10 ;;; This program is free software: you can redistribute it and/or modify
11 ;;; it under the terms of the GNU General Public License as published by
12 ;;; the Free Software Foundation, either version 3 of the License, or
13 ;;; (at your option) any later version.
14 ;;;
15 ;;; This program is distributed in the hope that it will be useful,
16 ;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 ;;; GNU General Public License for more details.
19 ;;; 
20 ;;; You should have received a copy of the GNU General Public License
21 ;;; along with this program.  If not, see <http://www.gnu.org/licenses/>.
22
23 ;;; Commentary:
24 ;;
25 ;; GNU Guix development package.  To build and install, run:
26 ;;
27 ;;   guix package -f guix.scm
28 ;;
29 ;; To build it, but not install it, run:
30 ;;
31 ;;   guix build -f guix.scm
32 ;;
33 ;; To use as the basis for a development environment, run:
34 ;;
35 ;;   guix environment -l guix.scm
36 ;;
37 ;;; Code:
38
39 (use-modules (srfi srfi-1)
40              (srfi srfi-26)
41              (ice-9 popen)
42              (ice-9 match)
43              (ice-9 rdelim)
44              (guix packages)
45              (guix licenses)
46              (guix gexp)
47              (guix git-download)
48              (guix build-system gnu)
49              ((guix build utils) #:select (with-directory-excursion))
50              (gnu packages)
51              (gnu packages autotools)
52              (gnu packages guile)
53              (gnu packages pkg-config)
54              (gnu packages texinfo))
55
56 (define %source-dir (dirname (current-filename)))
57
58 (package
59   (name "guile-8sync")
60   (version "git")
61   (source (local-file %source-dir
62                       #:recursive? #t
63                       #:select? (git-predicate %source-dir)))
64   (build-system gnu-build-system)
65   (native-inputs `(("autoconf" ,autoconf)
66                    ("automake" ,automake)
67                    ("guile" ,guile-2.2)
68                    ("pkg-config" ,pkg-config)
69                    ("texinfo" ,texinfo)))
70   (arguments
71    `(#:phases (modify-phases %standard-phases
72                 (add-before 'configure 'bootstrap
73                             (lambda _
74                               (zero? (system* "./bootstrap.sh"))))
75                 (add-before 'configure 'setenv
76                             (lambda _
77                               (setenv "GUILE_AUTO_COMPILE" "0"))))))
78   (home-page "https://gnu.org/s/8sync/")
79   (synopsis "Asynchronous actor model library for Guile")
80   (description
81    "GNU 8sync (pronounced \"eight-sync\") is an asynchronous programming
82 library for GNU Guile based on the actor model.")
83   (license lgpl3+))