diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2021-11-27 08:58:12 +0100 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2021-11-27 08:58:12 +0100 |
commit | 4316e937059135b4dac930288c33750c7ca06ba3 (patch) | |
tree | 521418a2e29cad395fbf61975ff7c4a4a3f7984c | |
parent | 5685946c07c5819957939377f037415d8798c547 (diff) | |
download | guix-4316e937059135b4dac930288c33750c7ca06ba3.tar.gz |
gnu: restbed: Update to 4.8.
* gnu/packages/networking.scm (restbed): Update to 4.8. [inputs]: Use latest `asio'. [arguments]: Activate tests. Remove unknown configure flags.
-rw-r--r-- | gnu/packages/networking.scm | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm index e3fd5c06f7..5898f49e6b 100644 --- a/gnu/packages/networking.scm +++ b/gnu/packages/networking.scm @@ -3330,7 +3330,7 @@ never see any machines other than the one Dante is running on.") (define-public restbed (package (name "restbed") - (version "4.7") + (version "4.8") (source (origin (method git-fetch) @@ -3339,19 +3339,15 @@ never see any machines other than the one Dante is running on.") (commit version))) (file-name (git-file-name name version)) (sha256 - (base32 "055qicb773a599dsqbcz5xf0xj1wpk33mdrkyi0fsmyjmn8d2p9d")))) + (base32 "15j09x36i6zj6innl0w1mfzlc56qmjwrs82my8dsagqa2ikd08ya")))) (build-system cmake-build-system) (inputs - `(("asio" ,asio-1.12) + `(("asio" ,asio) ("catch" ,catch-framework) ("openssl" ,openssl))) (arguments - `(#:tests? #f - #:configure-flags - '("-DBUILD_TESTS=NO" - "-DBUILD_EXAMPLES=NO" - "-DBUILD_SSL=NO" - "-DBUILD_SHARED=NO") + `(#:configure-flags + '("-DBUILD_SSL=NO") #:phases (modify-phases %standard-phases (add-after 'unpack 'apply-patches-and-fix-paths |