[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
- branch master updated (f5f9db1514 -> d2cf631651), guix-commits, 2023/07/09
- 01/06: gnu: cambalache: Update to 0.12.1., guix-commits, 2023/07/09
- 04/06: gnu: boinc-server: Use G-expressions., guix-commits, 2023/07/09
- 06/06: gnu: boinc-client: Update to 7.22.2., guix-commits, 2023/07/09
- 02/06: gnu: cambalache: Mark up description., guix-commits, 2023/07/09
- 05/06: gnu: boinc-server: Remove input labels., guix-commits, 2023/07/09
- 03/06: gnu: boinc-client: Use G-expressions.,
guix-commits <=