guix_mirror_bot pushed a commit to branch c++-team
in repository guix.
commit 89a13fb26f729f8dedfcf5381e72dda80649587a
Author: Greg Hogan <[email protected]>
AuthorDate: Thu Sep 4 15:28:12 2025 +0000
gnu: fxdiv: Pin dependency to old version.
* gnu/packages/maths.scm (fxdiv)[inputs]: Replace googletest with
googletest-1.8.
Change-Id: I10d985fab5975652d783c79cfd650b816454a632
---
gnu/packages/maths.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm
index 9a11131fd1..d39dcf21b9 100644
--- a/gnu/packages/maths.scm
+++ b/gnu/packages/maths.scm
@@ -10745,7 +10745,7 @@ high-performance multidimensional array containers for
scientific computing.")
(patches (search-patches "fxdiv-system-libraries.patch"))))
(build-system cmake-build-system)
(inputs
- (list googletest googlebenchmark))
+ (list googletest-1.8 googlebenchmark))
(synopsis
"C++ library for division via fixed-point multiplication by inverse")
(description