libfabric was missing on ucx

This commit is contained in:
Yann Dupont 2022-04-22 18:10:06 +02:00
parent 632f7aae7a
commit 9347825357

View file

@ -37,17 +37,42 @@
)
)
(define-public ucx-upstream-1.12.1
(package
(inherit gnu:ucx)
(name (string-append (package-name gnu:ucx) "-upstream" ))
(version "1.12.1")
(source
(origin
(method url-fetch)
(uri (string-append "https://github.com/openucx/ucx/releases/download/v" version "/ucx-" version ".tar.gz" ))
(sha256 (base32 "13mf30gdcqix8dyi0iwnsd5fn8b0syr03042y99s556swz44gd20"))
)
)
)
)
(define local-ucx ucx-upstream-1.12.0)
(define local-ucx ucx-upstream-1.12.1)
(define-public ucx-latest (latest-version local-ucx gnu:ucx))
(define-public ucx-latest-rdma
(transform-package
(
(instead-of "rdma-core" rdma-core-latest)
ucx-latest
) "rdma"
)
)
(define-public ucx-latest-glicid
(transform-package
(
(instead-of "rdma-core" rdma-core-latest)
ucx-latest
(instead-of "libfabric" libfabric-latest)
ucx-latest-rdma
) "glicid"
)
)