Merge branch 'devel' into 'main'

Devel

See merge request glicid-public/guix-glicid!114
This commit is contained in:
Yann Dupont 2022-11-08 13:38:27 +00:00
commit 0147b42004

View file

@ -95,8 +95,23 @@
)
)
(define-public rdma-core-upstream-42.1
(package
(inherit gnu:rdma-core)
(name (string-append (package-name gnu:rdma-core) "-upstream" ))
(version "42.1")
(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 "02xjksnm71aak215f9262c2qbs77n4yc856ra6dlcfblciqk1cxp"))
)
)
)
)
(define local-rdma-core rdma-core-upstream-42.0)
(define local-rdma-core rdma-core-upstream-42.1)
(define-public rdma-core-latest (latest-version local-rdma-core gnu:rdma-core))