mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-27 23:02:16 -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/>.
|
||||
|
||||
(define-module (gnu packages distributed)
|
||||
#:use-module (guix gexp)
|
||||
#:use-module (guix packages)
|
||||
#:use-module (guix utils)
|
||||
#:use-module (guix download)
|
||||
|
@ -58,7 +59,10 @@ (define-public boinc-client
|
|||
(base32
|
||||
"0af7j6zg3saa5x7lfsg41p7j9r1d1dsdsz5b241p1f2yrhba0m81"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments '(#:configure-flags '("--disable-server")))
|
||||
(arguments
|
||||
(list
|
||||
#:configure-flags
|
||||
#~(list "--disable-server")))
|
||||
(inputs (list openssl
|
||||
curl
|
||||
wxwidgets
|
||||
|
|
Loading…
Reference in a new issue