guix_mirror_bot pushed a commit to branch master
in repository guix.
commit db49a8c1f3298ebdb3e4dd510a165652716d7370
Author: Cayetano Santos <[email protected]>
AuthorDate: Sat Jan 17 21:36:05 2026 +0100
gnu: ispc: Update to 1.29.1.
* gnu/packages/c.scm (ispc): Update to 1.29.1.
[inputs]: Add onetbb.
[native-inputs]: Remove clang and python; add clang-19 and
python-minimal-wrapper.
Change-Id: I1d6b233b2d714e8cda67f5e95221b959de5863ac
---
gnu/packages/c.scm | 10 ++++++----
1 file changed, 6 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/c.scm b/gnu/packages/c.scm
index 2f48e9b9ad..4bcf050bfc 100644
--- a/gnu/packages/c.scm
+++ b/gnu/packages/c.scm
@@ -24,6 +24,7 @@
;;; Copyright @ 2022, Kitzman <[email protected]>
;;; Copyright @ 2025 Dariqq <[email protected]>
;;; Copyright © 2025 Ashish SHUKLA <[email protected]>
+;;; Copyright © 2026 Cayetano Santos <[email protected]>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -71,6 +72,7 @@
#:use-module (gnu packages m4)
#:use-module (gnu packages multiprecision)
#:use-module (gnu packages ncurses)
+ #:use-module (gnu packages oneapi)
#:use-module (gnu packages pcre)
#:use-module (gnu packages python)
#:use-module (gnu packages python-build)
@@ -1795,7 +1797,7 @@ SIMD (Single Instruction, Multiple Data) instructions.")
(define-public ispc
(package
(name "ispc")
- (version "1.19.0")
+ (version "1.29.1")
(source
(origin
(method git-fetch)
@@ -1804,9 +1806,9 @@ SIMD (Single Instruction, Multiple Data) instructions.")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
- (base32 "0yhcgyzjlrgs920lm0l6kygj2skanfb6qkxbdgm69r8c2xkzkaa3"))))
- (inputs (list ncurses))
- (native-inputs (list bison clang flex m4 python))
+ (base32 "02n14684nqbp1sxpnjkg6r9vwpdzqiwwaqxlp9bjykd125834ip2"))))
+ (inputs (list ncurses onetbb))
+ (native-inputs (list bison clang-19 flex m4 python-minimal-wrapper))
(build-system cmake-build-system)
(supported-systems
'("x86_64-linux" "i686-linux" "aarch64-linux" "armhf-linux"))