mirror of
https://gitlab.univ-nantes.fr/glicid-public/guix-glicid.git
synced 2025-05-02 23:23:03 +02:00
add glicid-rdma-core
This commit is contained in:
parent
ac8798d916
commit
cbac767551
1 changed files with 30 additions and 10 deletions
|
@ -209,20 +209,39 @@
|
||||||
|
|
||||||
;; pour futures customisations.
|
;; pour futures customisations.
|
||||||
|
|
||||||
(define-public glicid-openmpi-gcc-10
|
;(define-public glicid-openmpi-gcc-10
|
||||||
(package
|
; (package
|
||||||
(inherit openmpi)
|
; (inherit openmpi)
|
||||||
(name "glicid-openpmi-gcc-10")
|
; (name "glicid-openpmi-gcc-10")
|
||||||
(inputs `(("gcc-10", gcc-10)
|
; (inputs `(("gcc-10", gcc-10)
|
||||||
("gfortran-10", gfortran-10)
|
; ("gfortran-10", gfortran-10)
|
||||||
,@(package-inputs openmpi)))
|
; ,@(package-inputs openmpi)))
|
||||||
)
|
; )
|
||||||
|
;)
|
||||||
|
|
||||||
|
(define-public glicid-rdma-core-gcc-10
|
||||||
|
(package
|
||||||
|
(inherit rdma-core)
|
||||||
|
(name "glicid-rdma-core-gcc-10")
|
||||||
|
(version "31.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
|
||||||
|
"02ym93k6khfmzm9rml79x9zh1dy8231sygw16r287mhwp0x9mbji"))))
|
||||||
|
(inputs `(("gcc-10", gcc-10)
|
||||||
|
,@(package-inputs rdma-core)))
|
||||||
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
(define-public glicid-ucx
|
|
||||||
|
(define-public glicid-ucx-gcc-10
|
||||||
(package
|
(package
|
||||||
(inherit ucx)
|
(inherit ucx)
|
||||||
(name "glicid-ucx")
|
(name "glicid-ucx-gcc-10")
|
||||||
(version "1.9.0")
|
(version "1.9.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
|
@ -255,6 +274,7 @@
|
||||||
(inputs `(("gcc-10", gcc-10)
|
(inputs `(("gcc-10", gcc-10)
|
||||||
("gfortran-10", gfortran-10)
|
("gfortran-10", gfortran-10)
|
||||||
("glicid-ucx",glicid-ucx)
|
("glicid-ucx",glicid-ucx)
|
||||||
|
("glicid-rdma-core",glicid-rdma-core-gcc-10)
|
||||||
,@(package-inputs openmpi)))
|
,@(package-inputs openmpi)))
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue