gnu: emacs: Add mailutils to inputs.
[jackhill/guix/guix.git] / gnu / packages / distributed.scm
CommitLineData
2d25b0c8
BG
1;;; GNU Guix --- Functional package management for GNU
2;;; Copyright © 2019 Brant Gardner <brantcgardner@brantware.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 distributed)
20 #:use-module (guix packages)
21 #:use-module (guix download)
22 #:use-module (guix git-download)
23 #:use-module (guix build-system gnu)
24 #:use-module ((guix licenses) #:prefix license:)
25 #:use-module (gnu packages)
26 #:use-module (gnu packages autotools)
27 #:use-module (gnu packages base)
28 #:use-module (gnu packages compression)
29 #:use-module (gnu packages databases)
30 #:use-module (gnu packages pkg-config)
31 #:use-module (gnu packages tls)
32 #:use-module (gnu packages curl)
33 #:use-module (gnu packages wxwidgets)
34 #:use-module (gnu packages gnome)
35 #:use-module (gnu packages gtk)
36 #:use-module (gnu packages perl)
37 #:use-module (gnu packages sqlite)
38 #:use-module (gnu packages python)
39 #:use-module (gnu packages python-xyz))
40
41(define-public boinc-client
42 (package
43 (name "boinc-client")
44 (version "7.16.1")
45 (source (origin
46 (method git-fetch)
47 (uri (git-reference
48 (url "https://github.com/boinc/boinc.git")
49 (commit (string-append "client_release/"
50 "7.16/"
51 version))))
52 (sha256
53 (base32
54 "0w2qimcwyjhapk3z7zyq7jkls23hsnmm35iw7m4s4if04fp70dx0"))))
55 (build-system gnu-build-system)
56 (arguments '(#:configure-flags '("--disable-server")))
57 (inputs `(("openssl" ,openssl)
58 ("curl" ,curl)
59 ("wxwidgets" ,wxwidgets)
60 ("gtk+" ,gtk+)
61 ("gdk-pixbuf" ,gdk-pixbuf)
62 ("libnotify" ,libnotify)
63 ("sqlite" ,sqlite)
64 ("python" ,python)
65 ("python-pyserial" ,python-pyserial)))
66 (native-inputs
67 `(("autoconf" ,autoconf)
68 ("automake" ,automake)
69 ("libtool" ,libtool)
70 ("pkg-config" ,pkg-config)))
71 (synopsis "BOINC lets you help cutting-edge science research using your computer")
72 (description "BOINC is a platform for high-throughput computing on a large
73scale (thousands or millions of computers). It can be used for volunteer
74computing (using consumer devices) or grid computing (using organizational
75resources). It supports virtualized, parallel, and GPU-based applications.
76
77BOINC is distributed under the LGPL open source license. It can be used for
78commercial purposes, and applications need not be open source.")
79 (home-page "https://boinc.berkeley.edu/")
80 (license license:gpl3+)))
81
82(define-public boinc-server
83 (package (inherit boinc-client)
84 (name "boinc-server")
85 (arguments '(#:configure-flags '("--disable-client" "--disable-manager")
86 #:parallel-build? #f
87 #:tests? #f)) ; FIXME: Looks like bad test syntax in the
88 ; source package, 2 tests fail. Disable for
89 ; now.
90 (inputs `(("openssl" ,openssl)
91 ("curl" ,curl)
92 ("mariadb" ,mariadb)
93 ("zlib" ,zlib)))
94 (propagated-inputs `(("python" ,python-wrapper)
95 ("perl" ,perl)))))