civodul pushed a commit to branch master
in repository guix.
commit f30946ce13ab7619ac3747db18003de61a0a651b
Author: Ludovic Courtès <[email protected]>
AuthorDate: Thu Feb 23 14:34:33 2023 +0100
gnu: ibutils: Use gexps.
* gnu/packages/fabric-management.scm (ibutils)[arguments]: Use gexps.
---
gnu/packages/fabric-management.scm | 10 ++++++----
1 file changed, 6 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/fabric-management.scm
b/gnu/packages/fabric-management.scm
index 09e4a2b854..dc32b163da 100644
--- a/gnu/packages/fabric-management.scm
+++ b/gnu/packages/fabric-management.scm
@@ -164,10 +164,12 @@ interface to this library is not guaranteed to be
stable.")
perl))
(native-inputs (list swig))
(arguments
- `(#:configure-flags
- (list (string-append "--with-osm=" (assoc-ref %build-inputs "opensm"))
- (string-append "--with-tk-lib=" (assoc-ref %build-inputs "tk")
"/lib")
- "--disable-static")))
+ (list #:configure-flags
+ #~(list (string-append "--with-osm="
+ #$(this-package-input "opensm"))
+ (string-append "--with-tk-lib="
+ #$(this-package-input "tk") "/lib")
+ "--disable-static")))
(synopsis "InfiniBand network utilities")
(description "These command-line utilities allow for diagnosing and
testing InfiniBand networks.")