summaryrefslogtreecommitdiff
path: root/gnu/packages
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2026-01-05 16:53:09 +0100
committerLudovic Courtès <ludo@gnu.org>2026-01-09 15:22:45 +0100
commit552ca46e7b33ea9567e98cd9cf69a74b263872e4 (patch)
treefc24b965f8ea78f711a172ddf26c0bfaa92cbb68 /gnu/packages
parent1cbba4f24fd2fa6365fae9a07e86eca02fc227f1 (diff)
gnu: openpmix: Simplify.
* gnu/packages/parallel.scm (openpmix)[source]: Use ‘modules’ field and adjust ‘snippet’ accordingly. [arguments]: Remove now-useless configure flag. Change-Id: I2ec33232021485a019a8f86818e2f540963d4338 Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu/packages')
-rw-r--r--gnu/packages/parallel.scm10
1 files changed, 4 insertions, 6 deletions
diff --git a/gnu/packages/parallel.scm b/gnu/packages/parallel.scm
index 028c06cf80e..6858ad41552 100644
--- a/gnu/packages/parallel.scm
+++ b/gnu/packages/parallel.scm
@@ -729,17 +729,15 @@ single-instruction multiple-data (SIMD) intrinsics.")
729 (sha256 729 (sha256
730 (base32 730 (base32
731 "062k2agr311j06pavmrim1savmcv4f3c5jir4w1jxs0cdnb6ksdz")) 731 "062k2agr311j06pavmrim1savmcv4f3c5jir4w1jxs0cdnb6ksdz"))
732 (modules '((guix build utils)))
732 (snippet 733 (snippet
733 '(begin (use-modules (guix build utils)) 734 ;; Remove ~5 MiB of pre-built HTML doc.
734 ;; Remove ~5 MiB of pre-built HTML doc. 735 #~(delete-file-recursively "docs/_build/html"))))
735 (delete-file-recursively "docs/_build/html")))))
736 (build-system gnu-build-system) 736 (build-system gnu-build-system)
737 (arguments 737 (arguments
738 (list 738 (list
739 #:configure-flags 739 #:configure-flags
740 #~(list (string-append "--with-hwloc=" 740 #~(list "--enable-python-bindings") ;disabled by default
741 (ungexp (this-package-input "hwloc") "lib"))
742 "--enable-python-bindings") ;disabled by default
743 741
744 ;; Don't keep a reference to GCC. 742 ;; Don't keep a reference to GCC.
745 #:disallowed-references (and (not (%current-target-system)) 743 #:disallowed-references (and (not (%current-target-system))