mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-16 07:58:01 -05:00
gnu: boinc-client: Use G-expressions.
* gnu/packages/distributed.scm (boinc-client)[arguments]: Rewrite as G-expressions.
This commit is contained in:
parent
34d40ea170
commit
a0e1be3d48
1 changed files with 5 additions and 1 deletions
|
@ -20,6 +20,7 @@
|
||||||
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
(define-module (gnu packages distributed)
|
(define-module (gnu packages distributed)
|
||||||
|
#:use-module (guix gexp)
|
||||||
#:use-module (guix packages)
|
#:use-module (guix packages)
|
||||||
#:use-module (guix utils)
|
#:use-module (guix utils)
|
||||||
#:use-module (guix download)
|
#:use-module (guix download)
|
||||||
|
@ -58,7 +59,10 @@ (define-public boinc-client
|
||||||
(base32
|
(base32
|
||||||
"0af7j6zg3saa5x7lfsg41p7j9r1d1dsdsz5b241p1f2yrhba0m81"))))
|
"0af7j6zg3saa5x7lfsg41p7j9r1d1dsdsz5b241p1f2yrhba0m81"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments '(#:configure-flags '("--disable-server")))
|
(arguments
|
||||||
|
(list
|
||||||
|
#:configure-flags
|
||||||
|
#~(list "--disable-server")))
|
||||||
(inputs (list openssl
|
(inputs (list openssl
|
||||||
curl
|
curl
|
||||||
wxwidgets
|
wxwidgets
|
||||||
|
|
Loading…
Reference in a new issue