diff options
author | Greg Hogan <code@greghogan.com> | 2024-09-12 16:04:05 +0000 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-09-28 00:20:19 +0200 |
commit | 9b7a4f351117d30233b06cc60166ff8be67ee8eb (patch) | |
tree | fc0676941ee512476d093def390687adea12c445 /gnu/packages | |
parent | 2ebecf60e598524676588397cf972419db0c6a85 (diff) | |
download | guix-9b7a4f351117d30233b06cc60166ff8be67ee8eb.tar guix-9b7a4f351117d30233b06cc60166ff8be67ee8eb.tar.gz |
gnu: folly: Update to 2024.09.09.00.
* gnu/packages/cpp.scm (folly): Update to 2024.09.09.00.
[inputs]: Add fast-float.
Change-Id: Icbe6ec261561729178df0920a53ece7d4eded15d
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/cpp.scm | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm index 200b438158..9274ec1d6d 100644 --- a/gnu/packages/cpp.scm +++ b/gnu/packages/cpp.scm @@ -1645,7 +1645,7 @@ standard GNU style syntax for options.") (define-public folly (package (name "folly") - (version "2023.11.06.00") + (version "2024.09.09.00") (source (origin (method git-fetch) (uri (git-reference @@ -1654,18 +1654,20 @@ standard GNU style syntax for options.") (file-name (git-file-name name version)) (sha256 (base32 - "0z0jhkma2qacc2kc27qsiwqwqkv07i9mwpc4vwcbawyzdajq6hd0")))) + "17fdigkaxivbrww5yhz9fh25d8pirqjp126zbv4kg4qsprywfww5")))) (build-system cmake-build-system) (arguments - '(;; Tests must be explicitly enabled - ;;#:configure-flags '("-DBUILD_TESTS=ON"))) - ;; Leave tests disabled; see https://github.com/facebook/folly/issues/1456 - #:tests? #f)) + (list + ;; Tests must be explicitly enabled + ;;#:configure-flags #~(list "-DBUILD_TESTS=ON") + ;; Leave tests disabled; see https://github.com/facebook/folly/issues/2246 + #:tests? #f)) (propagated-inputs (list boost gflags glog liburing)) (inputs (list bzip2 double-conversion + fast-float fmt libaio libevent |