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

108 lines
3.5 KiB
Scheme
Raw Normal View History

2021-10-25 19:23:33 +02:00
(define-module (glicid packages fabric-management)
#:use-module (guix download)
#:use-module (guix packages)
2023-01-02 11:18:12 +01:00
#:use-module ((gnu packages fabric-management)
#:prefix gnu:)
2021-10-25 19:29:17 +02:00
#:use-module (glicid packages linux)
#:use-module (glicid utils)
2021-10-25 19:23:33 +02:00
2023-01-02 11:18:12 +01:00
)
2021-10-25 21:04:59 +02:00
(define-public ucx-upstream-1.11.2
(package
(inherit gnu:ucx)
2023-01-02 11:18:12 +01:00
(name (string-append (package-name gnu:ucx) "-upstream"))
(version "1.11.2")
2023-01-02 11:18:12 +01:00
(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 19:23:33 +02:00
(define-public ucx-upstream-1.12.0
(package
(inherit gnu:ucx)
2023-01-02 11:18:12 +01:00
(name (string-append (package-name gnu:ucx) "-upstream"))
(version "1.12.0")
2023-01-02 11:18:12 +01:00
(source (origin
(method url-fetch)
(uri (string-append
"https://github.com/openucx/ucx/releases/download/v"
version "/ucx-" version ".tar.gz"))
(sha256
(base32
"1djxsakwjwnw21hhzsr02w6h2jd2k16bm4pah4iz6k8s5pg99sck"))))))
2021-10-25 19:23:33 +02:00
(define-public ucx-upstream-1.12.1
(package
(inherit gnu:ucx)
2023-01-02 11:18:12 +01:00
(name (string-append (package-name gnu:ucx) "-upstream"))
(version "1.12.1")
2023-01-02 11:18:12 +01:00
(source (origin
(method url-fetch)
(uri (string-append
"https://github.com/openucx/ucx/releases/download/v"
version "/ucx-" version ".tar.gz"))
(sha256
(base32
"13mf30gdcqix8dyi0iwnsd5fn8b0syr03042y99s556swz44gd20"))))))
2021-10-25 19:23:33 +02:00
2022-07-08 09:57:06 +02:00
(define-public ucx-upstream-1.13.0
(package
(inherit gnu:ucx)
2023-01-02 11:18:12 +01:00
(name (string-append (package-name gnu:ucx) "-upstream"))
2022-07-08 09:57:06 +02:00
(version "1.13.0")
2023-01-02 11:18:12 +01:00
(source (origin
(method url-fetch)
(uri (string-append
"https://github.com/openucx/ucx/releases/download/v"
version "/ucx-" version ".tar.gz"))
(sha256
(base32
"0gay9qsyz5ia68sakq1dakvk3sblh4fawnwzg09q2y723zr82f4a"))))))
2022-07-08 09:57:06 +02:00
2022-09-09 10:22:02 +02:00
(define-public ucx-upstream-1.13.1
(package
(inherit gnu:ucx)
2023-01-02 11:18:12 +01:00
(name (string-append (package-name gnu:ucx) "-upstream"))
2022-09-09 10:22:02 +02:00
(version "1.13.1")
2023-01-02 11:18:12 +01:00
(source (origin
(method url-fetch)
(uri (string-append
"https://github.com/openucx/ucx/releases/download/v"
version "/ucx-" version ".tar.gz"))
(sha256
(base32
2023-01-02 15:08:24 +01:00
"0j05k71vqiry9gyi3v4a1s06w6v922klca2w31g71qq0qyb2yjic"))))))
2022-09-09 10:22:02 +02:00
(define-public ucx-upstream-1.14.0
(package
(inherit gnu:ucx)
(name (string-append (package-name gnu:ucx) "-upstream"))
(version "1.14.0")
(source (origin
(method url-fetch)
(uri (string-append
"https://github.com/openucx/ucx/releases/download/v"
version "/ucx-" version ".tar.gz"))
(sha256
(base32
"1pdg51p4ir0v1dm8lx15l3y1plm3zjn9l16xvplyqpfyb4h5xncv"))))))
2023-01-02 11:18:12 +01:00
(define local-ucx
2023-03-16 12:02:39 +01:00
ucx-upstream-1.14.0)
2023-01-02 11:18:12 +01:00
(define-public ucx-latest
(latest-version local-ucx gnu:ucx))
2021-10-25 19:23:33 +02:00
(define-public ucx-latest-rdma
2023-01-02 11:18:12 +01:00
(transform-package ((instead-of "rdma-core" rdma-core-latest)
ucx-latest) "rdma"))
2021-10-25 19:23:33 +02:00
(define-public ucx-latest-glicid
2023-01-02 11:18:12 +01:00
(transform-package ((instead-of "libfabric" libfabric-latest)
ucx-latest-rdma) "glicid"))