guix-glicid/glicid/packages/fabric-management.scm

75 lines
1.9 KiB
Scheme
Raw Normal View History

2021-10-25 19:23:33 +02:00
(define-module (glicid packages fabric-management)
#:use-module (guix download)
2021-12-03 10:35:51 +01:00
#:use-module (guix packages)
2021-11-22 10:47:25 +01:00
#:use-module ((gnu packages fabric-management) #:prefix gnu:)
2022-03-22 23:58:58 +01:00
#:use-module (glicid packages linux)
2022-02-28 15:58:39 +01:00
#:use-module (glicid utils)
2021-10-25 19:23:33 +02:00
)
2022-02-28 16:22:26 +01:00
(define-public ucx-upstream-1.11.2
2021-12-03 10:35:51 +01:00
(package
(inherit gnu:ucx)
2022-02-28 16:22:26 +01:00
(name (string-append (package-name gnu:ucx) "-upstream" ))
2021-12-03 10:35:51 +01:00
(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"))
)
)
2021-10-25 21:04:59 +02:00
)
)
2022-02-28 16:22:26 +01:00
(define-public ucx-upstream-1.12.0
2022-02-11 23:01:03 +01:00
(package
(inherit gnu:ucx)
2022-02-28 16:22:26 +01:00
(name (string-append (package-name gnu:ucx) "-upstream" ))
2022-02-11 23:01:03 +01:00
(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"))
)
)
)
)
2022-04-22 18:10:06 +02:00
(define-public ucx-upstream-1.12.1
(package
(inherit gnu:ucx)
(name (string-append (package-name gnu:ucx) "-upstream" ))
(version "1.12.1")
(source
(origin
(method url-fetch)
(uri (string-append "https://github.com/openucx/ucx/releases/download/v" version "/ucx-" version ".tar.gz" ))
(sha256 (base32 "13mf30gdcqix8dyi0iwnsd5fn8b0syr03042y99s556swz44gd20"))
)
)
)
)
2022-03-22 23:52:46 +01:00
2022-04-22 18:10:06 +02:00
(define local-ucx ucx-upstream-1.12.1)
(define-public ucx-latest (latest-version local-ucx gnu:ucx))
2022-03-22 23:52:46 +01:00
2022-04-22 18:10:06 +02:00
(define-public ucx-latest-rdma
2022-03-22 23:52:46 +01:00
(transform-package
(
(instead-of "rdma-core" rdma-core-latest)
ucx-latest
2022-04-22 18:10:06 +02:00
) "rdma"
)
)
(define-public ucx-latest-glicid
(transform-package
(
(instead-of "libfabric" libfabric-latest)
ucx-latest-rdma
2022-03-22 23:52:46 +01:00
) "glicid"
)
)