diff options
| -rw-r--r-- | gnu/packages/linux.scm | 29 |
1 files changed, 17 insertions, 12 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index c6bdadc81b4..8a6ef282fff 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm | |||
| @@ -10498,13 +10498,17 @@ known as Slingshot.") | |||
| 10498 | (version "2.5.0") | 10498 | (version "2.5.0") |
| 10499 | (source | 10499 | (source |
| 10500 | (origin | 10500 | (origin |
| 10501 | (method url-fetch) | 10501 | (method git-fetch) |
| 10502 | (uri | 10502 | (uri (git-reference |
| 10503 | (string-append "https://github.com/ofiwg/libfabric/releases/download/v" | 10503 | (url "https://github.com/ofiwg/libfabric") |
| 10504 | version "/libfabric-" version ".tar.bz2")) | 10504 | (commit (string-append "v" version)))) |
| 10505 | (sha256 | 10505 | (file-name (git-file-name name version)) |
| 10506 | (base32 "1589hm7mj86imqf7i69ji2qsfnrr5r0ll1pkkibc13bhrbnijq17")))) | 10506 | (sha256 (base32 "14yhvywbz98yajffq5pmpphhpdr0g8m8a5579dfy56fpxar441an")))) |
| 10507 | (build-system gnu-build-system) | 10507 | (build-system gnu-build-system) |
| 10508 | (native-inputs | ||
| 10509 | (list autoconf | ||
| 10510 | automake | ||
| 10511 | libtool)) | ||
| 10508 | (inputs | 10512 | (inputs |
| 10509 | (let ((if-supported ;XXX: modified from openmpi | 10513 | (let ((if-supported ;XXX: modified from openmpi |
| 10510 | (lambda (package . extra) | 10514 | (lambda (package . extra) |
| @@ -10561,15 +10565,16 @@ libraries, which are often integrated directly into libfabric.") | |||
| 10561 | (define-public libfabric-1 ;needed by Open MPI 4.x | 10565 | (define-public libfabric-1 ;needed by Open MPI 4.x |
| 10562 | (package | 10566 | (package |
| 10563 | (inherit libfabric) | 10567 | (inherit libfabric) |
| 10568 | (name "libfabric") | ||
| 10564 | (version "1.22.0") | 10569 | (version "1.22.0") |
| 10565 | (source | 10570 | (source |
| 10566 | (origin | 10571 | (origin |
| 10567 | (method url-fetch) | 10572 | (method git-fetch) |
| 10568 | (uri | 10573 | (uri (git-reference |
| 10569 | (string-append "https://github.com/ofiwg/libfabric/releases/download/v" | 10574 | (url "https://github.com/ofiwg/libfabric") |
| 10570 | version "/libfabric-" version ".tar.bz2")) | 10575 | (commit (string-append "v" version)))) |
| 10571 | (sha256 | 10576 | (file-name (git-file-name name version)) |
| 10572 | (base32 "1znmw83rmippv0fwz0x7lgylfk17dr9ckll8lrm4z7kclspnqpj8")))) | 10577 | (sha256 (base32 "1scwkfdnlg20hld03pdq83jq1q3nmvj1gravpn02pacqq18bv9xk")))) |
| 10573 | (inputs | 10578 | (inputs |
| 10574 | (modify-inputs inputs | 10579 | (modify-inputs inputs |
| 10575 | (append cxi-driver-for-libfabric-1))))) | 10580 | (append cxi-driver-for-libfabric-1))))) |
