mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: restinio: Prepare for tests and propagate some inputs.
* gnu/packages/networking.scm (restinio): Update to 0.6.15. [configure-flags]: New field. [phases]: {change-directory}: Change directory to 'dev'. [inputs]: Remove zlib, catch2, boost, pcre, and pcre2. [propagated-inputs]: Add pcre, pcre2, and zlib. [native-inputs]: Add catch2, clara, and json-dto.
This commit is contained in:
parent
bc27d83b96
commit
4f407a9c49
1 changed files with 28 additions and 16 deletions
|
@ -3640,24 +3640,36 @@ (define-public restinio
|
|||
(base32
|
||||
"1f8d5nfm8jqhspzsslwb1b7j4glipz31i9vszrcnkx3clc39nj2n"))))
|
||||
(build-system cmake-build-system)
|
||||
(inputs ; TODO: Need to force-keep references on some inputs, e.g. boost.
|
||||
(list zlib
|
||||
catch2
|
||||
openssl
|
||||
boost
|
||||
pcre
|
||||
pcre2
|
||||
(arguments
|
||||
(list
|
||||
;; Multiple tests fail to run in the build container due to host name
|
||||
;; resolution (see: https://github.com/Stiffstream/restinio/issues/172).
|
||||
#:tests? #f
|
||||
#:configure-flags #~(list "-DRESTINIO_FIND_DEPS=ON"
|
||||
"-DRESTINIO_INSTALL=ON"
|
||||
"-DRESTINIO_TEST=ON"
|
||||
"-DRESTINIO_USE_EXTERNAL_HTTP_PARSER=ON"
|
||||
"-DRESTINIO_USE_EXTERNAL_SOBJECTIZER=ON")
|
||||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(add-after 'unpack 'change-directory
|
||||
(lambda _
|
||||
(chdir "dev"))))))
|
||||
(native-inputs
|
||||
(list catch2
|
||||
clara
|
||||
json-dto))
|
||||
(inputs
|
||||
(list openssl
|
||||
sobjectizer))
|
||||
(propagated-inputs
|
||||
(list asio fmt-8 http-parser))
|
||||
(arguments
|
||||
`(#:configure-flags '("-DRESTINIO_INSTALL=on")
|
||||
#:tests? #f ; TODO: The tests are called from the root CMakelist, need RESTINIO_TEST=on.
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'unpack 'change-directory
|
||||
(lambda _
|
||||
(chdir "dev/restinio"))))))
|
||||
;; These are all #include'd by restinio's .hpp header files.
|
||||
(list asio
|
||||
fmt-8
|
||||
http-parser
|
||||
pcre
|
||||
pcre2
|
||||
zlib))
|
||||
(home-page "https://stiffstream.com/en/products/restinio.html")
|
||||
(synopsis "C++14 library that gives you an embedded HTTP/Websocket server")
|
||||
(description "RESTinio is a header-only C++14 library that gives you an embedded
|
||||
|
|
Loading…
Reference in a new issue