gnu: boost-signals2: Use G-expressions.

* gnu/packages/boost.scm (boost-signals2)[arguments]:
Rewrite as G-expressions.

Change-Id: I83c05f97089cae8a14fedf52c34e898addfb5701
This commit is contained in:
Tobias Geerinckx-Rice 2024-09-15 02:00:00 +02:00
parent 6ab1a5bf51
commit 7efce39662
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79

View file

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