mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
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:
parent
6ab1a5bf51
commit
7efce39662
1 changed files with 8 additions and 7 deletions
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue