diff options
author | Zheng Junjie <zhengjunjie@iscas.ac.cn> | 2024-08-14 17:03:36 +0800 |
---|---|---|
committer | Zheng Junjie <zhengjunjie@iscas.ac.cn> | 2024-11-21 22:52:51 +0800 |
commit | 970097e2f0a9fc6bb9132e4af5731902a7e12397 (patch) | |
tree | fbeb582db9e0ce881cafba5704dedb85118869de | |
parent | a69ba18b1ffd4c9662742e1a2292298d01c3de2d (diff) | |
download | guix-970097e2f0a9fc6bb9132e4af5731902a7e12397.tar.gz guix-970097e2f0a9fc6bb9132e4af5731902a7e12397.zip |
gnu: abseil-cpp: Update to 20240722.0.
* gnu/packages/cpp.scm (abseil-cpp): Update to 20240722.0.
Change-Id: I9dd3ed159b2f2186ca13ffea9c3879ba45a17104
-rw-r--r-- | gnu/packages/cpp.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm index 2c0b575a84..eacc6e46ab 100644 --- a/gnu/packages/cpp.scm +++ b/gnu/packages/cpp.scm @@ -1532,7 +1532,7 @@ Google's C++ code base.") (package (inherit base) (name "abseil-cpp") - (version "20230802.1") + (version "20240722.0") (source (origin (method git-fetch) (uri (git-reference @@ -1541,7 +1541,7 @@ Google's C++ code base.") (file-name (git-file-name name version)) (sha256 (base32 - "1ydkkbanrpkp5i814arzsk973kyzhhjhagnp392rq6rrv16apldq")) + "1pmrigimzic2k3ix3l81j2jpfgjgbajz0qbc5s57zljr2w7fjn77")) (patches (search-patches "abseil-cpp-20220623.1-no-kepsilon-i686.patch")))) (arguments @@ -1556,7 +1556,7 @@ Google's C++ code base.") (add-before 'check 'set-env-vars (lambda* (#:key inputs #:allow-other-keys) ;; absl_time_test requires this environment variable. - (setenv "TZDIR" (string-append #$(package-source base) + (setenv "TZDIR" (string-append #$(package-source this-package) "/absl/time/internal/cctz/testdata/zoneinfo")))) #$@(if (target-riscv64?) #~((replace 'check |