summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCayetano Santos <csantosb@inventati.org>2026-08-17 17:36:34 +0200
committerCayetano Santos <csantosb@inventati.org>2026-08-21 11:07:44 +0200
commit03ee5fcf5e22c84dcdd94c09360a800c1139d523 (patch)
tree752c27e98c6f46990136209156dfb9d58d2dc1a8
parentc15169aa5f53a318201fce8cac4de73d4a932898 (diff)
gnu: Add onetbb-2022.
* gnu/packages/oneapi.scm (onetbb-2022): New variable. Merges guix/guix!9535.
-rw-r--r--gnu/packages/oneapi.scm17
1 files changed, 17 insertions, 0 deletions
diff --git a/gnu/packages/oneapi.scm b/gnu/packages/oneapi.scm
index fec242a9648..e4848da1e85 100644
--- a/gnu/packages/oneapi.scm
+++ b/gnu/packages/oneapi.scm
@@ -212,6 +212,23 @@ constructs, asynchronous tasks, synchronization primitives, atomic operations,
212and more.") 212and more.")
213 (license license:asl2.0))) 213 (license license:asl2.0)))
214 214
215(define-public onetbb-2022
216 (package
217 (inherit onetbb)
218 (name "onetbb")
219 (version "2022.3.0")
220 (source
221 (origin
222 (method git-fetch)
223 (uri (git-reference
224 (url "https://github.com/uxlfoundation/oneTBB/")
225 (commit (string-append "v" version))))
226 (file-name (git-file-name name version))
227 (sha256
228 (base32
229 "0ibwr5cw0zw5dfcdhavr5zbmwqqf7vnsai0gh4mqw475l7lcb08w"))
230 (patches (search-patches "onetbb-other-arches.patch"))))))
231
215(define-public python-onetbb 232(define-public python-onetbb
216 (package 233 (package
217 (inherit onetbb) 234 (inherit onetbb)