mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
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>
This commit is contained in:
parent
2ebecf60e5
commit
9b7a4f3511
1 changed files with 8 additions and 6 deletions
|
@ -1645,7 +1645,7 @@ (define-public cxxopts
|
||||||
(define-public folly
|
(define-public folly
|
||||||
(package
|
(package
|
||||||
(name "folly")
|
(name "folly")
|
||||||
(version "2023.11.06.00")
|
(version "2024.09.09.00")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
|
@ -1654,18 +1654,20 @@ (define-public folly
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0z0jhkma2qacc2kc27qsiwqwqkv07i9mwpc4vwcbawyzdajq6hd0"))))
|
"17fdigkaxivbrww5yhz9fh25d8pirqjp126zbv4kg4qsprywfww5"))))
|
||||||
(build-system cmake-build-system)
|
(build-system cmake-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(;; Tests must be explicitly enabled
|
(list
|
||||||
;;#:configure-flags '("-DBUILD_TESTS=ON")))
|
;; Tests must be explicitly enabled
|
||||||
;; Leave tests disabled; see https://github.com/facebook/folly/issues/1456
|
;;#:configure-flags #~(list "-DBUILD_TESTS=ON")
|
||||||
|
;; Leave tests disabled; see https://github.com/facebook/folly/issues/2246
|
||||||
#:tests? #f))
|
#:tests? #f))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(list boost gflags glog liburing))
|
(list boost gflags glog liburing))
|
||||||
(inputs
|
(inputs
|
||||||
(list bzip2
|
(list bzip2
|
||||||
double-conversion
|
double-conversion
|
||||||
|
fast-float
|
||||||
fmt
|
fmt
|
||||||
libaio
|
libaio
|
||||||
libevent
|
libevent
|
||||||
|
|
Loading…
Reference in a new issue