e3b0cdd8843fe7792fe91d1cbb2be82850f26636
1 ;;; mumi - Mediocre, uh, mail interface
2 ;;; Copyright © 2016, 2017, 2018 Ricardo Wurmus <rekado@elephly.net>
4 ;;; This file is part of mumi.
6 ;;; mumi 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
9 ;;; (at your option) any later version.
11 ;;; mumi 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 GNU
14 ;;; General Public License for more details.
16 ;;; You should have received a copy of the GNU General Public License
17 ;;; along with mumi. If not, see <http://www.gnu.org/licenses/>.
19 ;;; Run the following command to enter a development environment for
22 ;;; $ guix environment -l guix.scm
24 (use-modules ((guix licenses
) #:prefix license
:)
29 (guix build-system gnu
)
31 (gnu packages autotools
)
33 (gnu packages guile-xyz
)
34 (gnu packages pkg-config
)
35 (gnu packages texinfo
)
42 (build-system gnu-build-system
)
44 `(("guile-debbugs" ,guile-debbugs-next
)
45 ("guile-email" ,guile-email
)
46 ("guile-json" ,guile-json
)
47 ("guile-fibers" ,guile-fibers
)
48 ("guile-syntax-highlight" ,guile-syntax-highlight
)
49 ("guile" ,guile-2.2
)))
51 `(("autoconf" ,autoconf
)
52 ("automake" ,automake
)
53 ("pkg-config" ,pkg-config
)))
57 (license license
:gpl3
+))