diff options
-rw-r--r-- | gnu/packages/cpp.scm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm index 7719632ba4..a26c5e1b05 100644 --- a/gnu/packages/cpp.scm +++ b/gnu/packages/cpp.scm @@ -2058,7 +2058,7 @@ feature set with a simple and intuitive interface.") (define-public caf (package (name "caf") - (version "0.18.6") + (version "1.0.2") (source (origin (method git-fetch) (uri (git-reference @@ -2067,11 +2067,11 @@ feature set with a simple and intuitive interface.") (file-name (git-file-name name version)) (sha256 (base32 - "055y82044djphpwbazaxsvmb66c2xfdi8vyny8pzdxkdgxfh0vq1")))) + "1za7yja76csa0jnvkyavg2hc5zcc00za46c4x2fq42skh1apqcnl")))) (build-system cmake-build-system) (arguments - '(#:configure-flags - '("-DCAF_ENABLE_EXAMPLES=OFF"))) + (list #:configure-flags + #~(list "-DCAF_ENABLE_EXAMPLES=OFF"))) (inputs (list openssl)) (synopsis "C++ implementation of the actor model") |