Merge branch 'main' of gitlab.univ-nantes.fr:glicid-public/guix-glicid into main

This commit is contained in:
Yann Dupont 2022-02-25 19:14:43 +01:00
commit 257e934573
3 changed files with 4287 additions and 2 deletions

View file

@ -19,5 +19,35 @@
) )
) )
(define local-ucx ucx-newer-1.11.2) (define-public ucx-newer-1.11.2
(package
(inherit gnu:ucx)
(name (string-append (package-name gnu:ucx) "-newer" ))
(version "1.11.2")
(source
(origin
(method url-fetch)
(uri (string-append "https://github.com/openucx/ucx/releases/download/v" version "/ucx-" version ".tar.gz" ))
(sha256 (base32 "1py62vjr0hgyqsdpr04jhn918i8ccn6ghjalwpcjpz24admgisyy"))
)
)
)
)
(define-public ucx-newer-1.12.0
(package
(inherit gnu:ucx)
(name (string-append (package-name gnu:ucx) "-newer" ))
(version "1.12.0")
(source
(origin
(method url-fetch)
(uri (string-append "https://github.com/openucx/ucx/releases/download/v" version "/ucx-" version ".tar.gz" ))
(sha256 (base32 "1djxsakwjwnw21hhzsr02w6h2jd2k16bm4pah4iz6k8s5pg99sck"))
)
)
)
)
(define local-ucx ucx-newer-1.12.0)
(define-public ucx-latest local-ucx) (define-public ucx-latest local-ucx)

View file

@ -45,7 +45,22 @@
) )
) )
(define local-rdma-core rdma-core-newer-38.0) (define-public rdma-core-newer-39.0
(package
(inherit gnu:rdma-core)
(name (string-append (package-name gnu:rdma-core) "-newer" ))
(version "39.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 "0y13px3qgyh3szywjhikw183y54iym9sa60aw0sf51p3kzgg1spn"))
)
)
)
)
(define local-rdma-core rdma-core-newer-39.0)
(define-public rdma-core-latest local-rdma-core) (define-public rdma-core-latest local-rdma-core)

4240
glicid/packages/rust.scm Normal file

File diff suppressed because it is too large Load diff