guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

03/06: gnu: boinc-client: Use G-expressions.


From: guix-commits
Subject: 03/06: gnu: boinc-client: Use G-expressions.
Date: Sun, 9 Jul 2023 16:28:38 -0400 (EDT)

nckx pushed a commit to branch master
in repository guix.

commit a0e1be3d4803a970783764f26b7674ab333f3bc8
Author: Tobias Geerinckx-Rice <me@tobias.gr>
AuthorDate: Sun Jul 2 02:00:08 2023 +0200

    gnu: boinc-client: Use G-expressions.
    
    * gnu/packages/distributed.scm (boinc-client)[arguments]:
    Rewrite as G-expressions.
---
 gnu/packages/distributed.scm | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/distributed.scm b/gnu/packages/distributed.scm
index 2c957df114..2aa3bd08b6 100644
--- a/gnu/packages/distributed.scm
+++ b/gnu/packages/distributed.scm
@@ -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 @@
                (base32
                 "0af7j6zg3saa5x7lfsg41p7j9r1d1dsdsz5b241p1f2yrhba0m81"))))
     (build-system gnu-build-system)
-    (arguments '(#:configure-flags '("--disable-server")))
+    (arguments
+     (list
+      #:configure-flags
+      #~(list "--disable-server")))
     (inputs (list openssl
                   curl
                   wxwidgets



reply via email to

[Prev in Thread] Current Thread [Next in Thread]