nckx pushed a commit to branch master
in repository guix.

commit 7efce3966293f833be9a0bb24e3c5571a6033900
Author: Tobias Geerinckx-Rice <m...@tobias.gr>
AuthorDate: Sun Sep 15 02:00:00 2024 +0200

    gnu: boost-signals2: Use G-expressions.
    
    * gnu/packages/boost.scm (boost-signals2)[arguments]:
    Rewrite as G-expressions.
    
    Change-Id: I83c05f97089cae8a14fedf52c34e898addfb5701
---
 gnu/packages/boost.scm | 15 ++++++++-------
 1 file changed, 8 insertions(+), 7 deletions(-)

diff --git a/gnu/packages/boost.scm b/gnu/packages/boost.scm
index 233ef5bd87..d090c52d8d 100644
--- a/gnu/packages/boost.scm
+++ b/gnu/packages/boost.scm
@@ -411,13 +411,14 @@ Boost.Thread.")
           (base32 "101ayw7dz4gdvva2yzyrfad69w4xbvv3man83xwqjbkib3a92ca8"))))
       (build-system trivial-build-system)
       (arguments
-       `(#:modules ((guix build utils))
-         #:builder
-         (begin
-           (use-modules (guix build utils))
-           (let ((source (assoc-ref %build-inputs "source")))
-             (copy-recursively (string-append source "/include")
-                               (string-append %output "/include"))))))
+       (list
+        #:modules '((guix build utils))
+        #:builder
+        #~(begin
+            (use-modules (guix build utils))
+            (let ((source (assoc-ref %build-inputs "source")))
+              (copy-recursively (string-append source "/include")
+                                (string-append %output "/include"))))))
       (home-page "https://github.com/boostorg/signals2";)
       (synopsis "Boost.Signals2 library")
       (description "The Boost.Signals2 library is an implementation of a 
managed

Reply via email to