test libfabric opx

This commit is contained in:
Yann Dupont 2022-03-18 22:07:47 +01:00
parent a650fd6dbe
commit 1e2831a6f4

View file

@ -1,6 +1,7 @@
(define-module (glicid packages linux)
#:use-module (guix packages)
#:use-module (guix download)
#:use-module (guix git-download)
#:use-module ((guix licenses) #:prefix license:)
#:use-module (guix build-system gnu)
#:use-module (guix build-system go)
@ -95,6 +96,33 @@
)
)
(define-public libfabric-opx-beta-upstream-1.14.0-a
(let ((commit "89cbe4d54b23ef98a4795ef8c59f7da85b3a3872"))
(package
(inherit gnu:libfabric)
(version "1.14.0")
(name (string-append (package-name gnu:libfabric) "-opx-beta-upstream" ))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/cornelisnetworks/libfabric")
;; (branch "opx-beta-upstream")
;; (commit ("89cbe4d54b23ef98a4795ef8c59f7da85b3a3872")) ;; no tag, as of 2022 03 18
(commit commit)
))
(file-name (git-file-name name version))
(sha256 (base32 "0zbs04lkjbp7y92anmafl7gzamcnq1f147p13hc4byyvjk9rg6f7"))
)
)
)
)
)
(define local-libfabric libfabric-upstream-1.14.0)
(define-public libfabric-latest (latest-version local-libfabric gnu:libfabric))