guix-commits
[Top][All Lists]
Advanced

[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,



reply via email to

[Prev in Thread] Current Thread [Next in Thread]