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"))))
|
||||
(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
|
||||
|
|
Loading…
Reference in a new issue