From 6726274b29d5f50ca2fd4ac077a1612e225d1c75 Mon Sep 17 00:00:00 2001 From: Cayetano Santos Date: Fri, 9 Jan 2026 15:06:52 +0100 Subject: [PATCH] gnu: pagmo: Update dependency on tbb. * gnu/packages/maths.scm (pagmo)[inputs]: Remove tbb; add onetbb. Closes guix/guix!5493 Change-Id: Id955eb1f0ba836e8d65fecf846e02e0274a131aa Signed-off-by: Rutherther --- gnu/packages/maths.scm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index dc5ef2b1ea9beea83fe52c62db7174fc521841b1..15ecc1d25224440b001d678910eef73aea6cb6b8 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -72,6 +72,7 @@ ;;; Copyright © 2025 Sören Tempel ;;; Copyright © 2025 nomike Postmann ;;; Copyright © 2025 Reza Housseini +;;; Copyright © 2026 Cayetano Santos ;;; ;;; This file is part of GNU Guix. ;;; @@ -173,6 +174,7 @@ #:use-module (gnu packages ninja) #:use-module (gnu packages ocaml) #:use-module (gnu packages onc-rpc) + #:use-module (gnu packages oneapi) #:use-module (gnu packages parallel) #:use-module (gnu packages pcre) #:use-module (gnu packages popt) @@ -1599,7 +1601,7 @@ NonLinear Programming) problems. It builds on top of Cbc and Ipopt.") (list #:configure-flags #~(list "-DPAGMO_BUILD_TESTS=ON" "-DPAGMO_WITH_EIGEN3=ON"))) ;; Eigen is optional, enables some extra features. - (inputs (list boost eigen tbb)) + (inputs (list boost eigen onetbb)) (home-page "https://esa.github.io/pagmo2/") (synopsis "Platform to perform parallel computations of optimisation tasks")