[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
04/07: gnu: Add ibutils.
From: |
Ludovic Courtès |
Subject: |
04/07: gnu: Add ibutils. |
Date: |
Sat, 23 Sep 2017 12:35:34 -0400 (EDT) |
civodul pushed a commit to branch master
in repository guix.
commit 8a001de8b73f1f0138ba80dd146bff183a185872
Author: Dave Love <address@hidden>
Date: Fri Sep 22 16:04:07 2017 +0100
gnu: Add ibutils.
* gnu/packages/fabric-management.scm (ibutils): New variable.
Signed-off-by: Ludovic Courtès <address@hidden>
---
gnu/packages/fabric-management.scm | 36 +++++++++++++++++++++++++++++++++++-
1 file changed, 35 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/fabric-management.scm
b/gnu/packages/fabric-management.scm
index edb0588..76ef9ee 100644
--- a/gnu/packages/fabric-management.scm
+++ b/gnu/packages/fabric-management.scm
@@ -27,9 +27,12 @@
#:use-module (gnu packages bison)
#:use-module (gnu packages flex)
#:use-module (gnu packages glib)
+ #:use-module (gnu packages graphviz)
#:use-module (gnu packages linux)
#:use-module (gnu packages perl)
- #:use-module (gnu packages pkg-config))
+ #:use-module (gnu packages pkg-config)
+ #:use-module (gnu packages swig)
+ #:use-module (gnu packages tcl))
;; Fixme: Done for the library, but needs support for running the daemon
;; (shepherd definition).
@@ -137,3 +140,34 @@ In addition to the utilities, a sub-library,
@file{libibnetdisc}, is provided
to scan an entire IB fabric and return data structures representing it. The
interface to this library is not guaranteed to be stable.")
(license (list gpl2 bsd-2)))) ; dual
+
+(define-public ibutils
+ (package
+ (name "ibutils")
+ (version "1.5.7-0.2.gbd7e502")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
"https://www.openfabrics.org/downloads/ibutils/ibutils-"
+ version ".tar.gz"))
+ (sha256
+ (base32 "00x7v6cf8l5y6g9xwh1sg738ch42fhv19msx0h0090nhr0bv98v7"))))
+ (build-system gnu-build-system)
+ (inputs `(("graphviz" ,graphviz)
+ ("tcl" ,tcl)
+ ("tk" ,tk)
+ ("infiniband-diags" ,infiniband-diags)
+ ("rdma-core" ,rdma-core)
+ ("opensm" ,opensm)
+ ("perl" ,perl)))
+ (native-inputs `(("swig" ,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")))
+ (synopsis "InfiniBand network utilities")
+ (description "These command-line utilities allow for diagnosing and
+testing InfiniBand networks.")
+ (home-page "https://www.openfabrics.org/downloads/ibutils/")
+ (license bsd-2)))
- branch master updated (a0b80a5 -> 60e2a9a), Ludovic Courtès, 2017/09/23
- 06/07: gnu: Add gsound., Ludovic Courtès, 2017/09/23
- 07/07: gnu: Add gnome-clocks., Ludovic Courtès, 2017/09/23
- 01/07: gnu: gnurl: Update to 7.55.1-4., Ludovic Courtès, 2017/09/23
- 04/07: gnu: Add ibutils.,
Ludovic Courtès <=
- 05/07: gnu: libgweather: Enable vala support., Ludovic Courtès, 2017/09/23
- 03/07: gnu: Add infiniband-diags., Ludovic Courtès, 2017/09/23
- 02/07: gnu: Add opensm., Ludovic Courtès, 2017/09/23