mirror of
https://gitlab.univ-nantes.fr/glicid-public/guix-glicid.git
synced 2025-04-30 06:08:37 +02:00
new rdma-core versions
This commit is contained in:
parent
9b69b9fd15
commit
9039a1e777
1 changed files with 30 additions and 7 deletions
|
@ -16,7 +16,7 @@
|
|||
#:use-module (gnu packages autotools)
|
||||
#:use-module (gnu packages base)
|
||||
#:use-module (gnu packages freeipmi)
|
||||
#:use-module (gnu packages linux)
|
||||
#:use-module ((gnu packages linux) #:prefix gnu:)
|
||||
#:use-module (gnu packages mpi)
|
||||
#:use-module (gnu packages perl)
|
||||
#:use-module (gnu packages pkg-config)
|
||||
|
@ -75,7 +75,7 @@
|
|||
#:use-module (gnu packages disk)
|
||||
#:use-module (gnu packages gperf)
|
||||
#:use-module (gnu packages jemalloc)
|
||||
#:use-module (gnu packages linux)
|
||||
; #:use-module (gnu packages linux)
|
||||
#:use-module (gnu packages lua)
|
||||
#:use-module (gnu packages ncurses)
|
||||
#:use-module (gnu packages networking)
|
||||
|
@ -95,10 +95,12 @@
|
|||
)
|
||||
|
||||
|
||||
(define-public glicid-rdma-core
|
||||
|
||||
|
||||
(define-public rdma-core-37.1
|
||||
(package
|
||||
(inherit rdma-core)
|
||||
(name "glicid-rdma-core")
|
||||
(inherit gnu:rdma-core)
|
||||
(name "rdma-core")
|
||||
(version "37.1")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
|
@ -111,10 +113,31 @@
|
|||
)
|
||||
)
|
||||
|
||||
(define-public rdma-core-38.0
|
||||
(package
|
||||
(inherit gnu:rdma-core)
|
||||
(name "rdma-core")
|
||||
(version "38.0")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://github.com/linux-rdma/rdma-core"
|
||||
"/releases/download/v" version "/rdma-core-"
|
||||
version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1hjwagf5x48vgshy5s01qjlzjr8kmxpflfcvh8pgj3zbj82zzxiz"))))
|
||||
)
|
||||
)
|
||||
|
||||
|
||||
(define-public rdma-core rdma-core-38.0)
|
||||
|
||||
|
||||
|
||||
|
||||
(define-public glicid-rdma-core-gcc-11
|
||||
(package
|
||||
(inherit glicid-rdma-core)
|
||||
(inherit rdma-core)
|
||||
(name "glicid-rdma-core-gcc-11")
|
||||
(inputs `(("gcc-11", gcc-11)
|
||||
,@(package-inputs rdma-core)))
|
||||
|
@ -124,7 +147,7 @@
|
|||
|
||||
(define-public glicid-libfabric
|
||||
(package
|
||||
(inherit libfabric)
|
||||
(inherit gnu:libfabric)
|
||||
(name "glicid-libfabric")
|
||||
(version "1.13.1")
|
||||
)
|
||||
|
|
Loading…
Add table
Reference in a new issue