[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
07/10: gnu: ceres: Propagate eigen and gflags.
From: |
guix-commits |
Subject: |
07/10: gnu: ceres: Propagate eigen and gflags. |
Date: |
Sat, 30 Sep 2023 10:11:25 -0400 (EDT) |
monego pushed a commit to branch master
in repository guix.
commit 962e246509febdef76efd7e94102e6b8ffb88ceb
Author: Vinicius Monego <monego@posteo.net>
AuthorDate: Sun Jul 30 11:19:01 2023 -0300
gnu: ceres: Propagate eigen and gflags.
* gnu/packages/maths.scm (ceres)[inputs]: Move eigen and gflags to ...
[propagated-inputs]: ... here.
---
gnu/packages/maths.scm | 14 ++++----------
1 file changed, 4 insertions(+), 10 deletions(-)
diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm
index 24fcd95493..68959ffbba 100644
--- a/gnu/packages/maths.scm
+++ b/gnu/packages/maths.scm
@@ -2859,16 +2859,10 @@ with constraints.")
(substitute* "CMakeLists.txt"
(("set\\(LIB_SUFFIX \"64\"\\)")
"set(LIB_SUFFIX \"\")")))))))
- (native-inputs
- (list pkg-config))
- (propagated-inputs
- (list glog)) ;for #include <glog/glog.h>
- (inputs
- (list eigen
- openblas
- lapack
- suitesparse
- gflags))
+ (native-inputs (list pkg-config))
+ ;; These inputs need to be propagated to satisfy dependent packages.
+ (propagated-inputs (list eigen gflags glog))
+ (inputs (list openblas lapack suitesparse))
(synopsis "C++ library for solving large optimization problems")
(description
"Ceres Solver is a C++ library for modeling and solving large,
- branch master updated (ee5de9cdf2 -> 9f41aa021f), guix-commits, 2023/09/30
- 02/10: gnu: Add primesieve., guix-commits, 2023/09/30
- 03/10: gnu: Add cminpack., guix-commits, 2023/09/30
- 07/10: gnu: ceres: Propagate eigen and gflags.,
guix-commits <=
- 08/10: gnu: Add python-numpoly., guix-commits, 2023/09/30
- 09/10: gnu: Add python-chaospy., guix-commits, 2023/09/30
- 10/10: gnu: Add python-openturns., guix-commits, 2023/09/30
- 01/10: gnu: Add hmat., guix-commits, 2023/09/30
- 05/10: gnu: Add pagmo., guix-commits, 2023/09/30
- 04/10: gnu: Add bonmin., guix-commits, 2023/09/30
- 06/10: gnu: Add spectra., guix-commits, 2023/09/30