From 962e246509febdef76efd7e94102e6b8ffb88ceb Mon Sep 17 00:00:00 2001 From: Vinicius Monego Date: Sun, 30 Jul 2023 11:19:01 -0300 Subject: 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 - (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, -- cgit v1.2.3