From 7efce3966293f833be9a0bb24e3c5571a6033900 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sun, 15 Sep 2024 02:00:00 +0200 Subject: 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(-) (limited to 'gnu') 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 -- cgit v1.2.3