mirror of
https://gitlab.univ-nantes.fr/glicid-public/guix-glicid.git
synced 2025-04-30 14:18:38 +02:00
test libfabric opx
This commit is contained in:
parent
a650fd6dbe
commit
1e2831a6f4
1 changed files with 28 additions and 0 deletions
|
@ -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))
|
||||
|
|
Loading…
Add table
Reference in a new issue