mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: reproc: Improve package style.
* gnu/packages/cpp.scm (reproc)[arguments]: Use G-expressions. <#:configure-flags>: Remove unnecessary comment. Enable CMake variable with ON rather than 1. Change-Id: Ic5e6747e7978a40d1aab66b4c3634342736c0bcf Signed-off-by: Hilton Chain <hako@ultrarare.space>
This commit is contained in:
parent
b18c003c69
commit
a1bf3139a0
1 changed files with 3 additions and 5 deletions
|
@ -1065,11 +1065,9 @@ (define-public reproc
|
||||||
(base32 "09xnf8hmld1fk8j33zwlz1qcxnjdx1ncbg62csic9va4m1wc2v1d"))))
|
(base32 "09xnf8hmld1fk8j33zwlz1qcxnjdx1ncbg62csic9va4m1wc2v1d"))))
|
||||||
(build-system cmake-build-system)
|
(build-system cmake-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
;; No tests.
|
(list #:tests? #f ; No tests.
|
||||||
`(#:tests? #f
|
#:configure-flags #~(list "-DBUILD_SHARED_LIBS=ON"
|
||||||
;; Build the shared library instead of a static one.
|
"-DREPROC++=ON")))
|
||||||
#:configure-flags `("-DBUILD_SHARED_LIBS=1"
|
|
||||||
"-DREPROC++=ON")))
|
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list pkg-config))
|
(list pkg-config))
|
||||||
(synopsis "Process IO library")
|
(synopsis "Process IO library")
|
||||||
|
|
Loading…
Reference in a new issue