[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
03/12: gnu: Add cxi-driver.
From: |
guix-commits |
Subject: |
03/12: gnu: Add cxi-driver. |
Date: |
Mon, 25 Nov 2024 06:27:05 -0500 (EST) |
civodul pushed a commit to branch master
in repository guix.
commit 24f6a1c1884e466671a796c7c2f71cc9a53fa7b9
Author: Ludovic Courtès <ludo@gnu.org>
AuthorDate: Mon Nov 18 14:27:40 2024 +0100
gnu: Add cxi-driver.
* gnu/packages/linux.scm (cxi-driver): New variable.
Change-Id: Iac48010d3de7f46248afe8c71991da71b61ebe6f
---
gnu/packages/linux.scm | 30 ++++++++++++++++++++++++++++++
1 file changed, 30 insertions(+)
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index 4dc8abb48e..629a05209f 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -9033,6 +9033,36 @@ high-speed network interconnect made by HPE (formerly
Cray). User-land
software uses @file{cxi_prov_hw.h} from this package.")
(license (list license:gpl2 license:bsd-2))))) ;dual-licensed
+(define-public cxi-driver
+ (let ((commit "5f0ec0ead6ef3f98542a2ef5e76b89d14dd22150")
+ (revision "0"))
+ (package
+ (name "cxi-driver")
+ (version (git-version "1.0.0" ;per .spec file
+ revision commit))
+ (home-page "https://github.com/HewlettPackard/shs-cxi-driver")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference (url home-page) (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "19cly014ihgdidrc1aki2xsbfhpc0g73v0vxcky8r27xza7rz5bg"))))
+ ;; TODO: Actually build the Linux driver.
+ (build-system copy-build-system)
+ (arguments
+ (list #:install-plan #~'(("include" "include"))))
+ (propagated-inputs (list cassini-headers))
+ (synopsis "Linux driver for the Cassini/Slingshot interconnect")
+ (description
+ "This is the Linux driver for the Cray/HPE Cassini 1 and 2 high-speed
+network interconnect (aka. Slingshot), and its Ethernet driver. It includes
+the @file{uapi/misc/cxi.h} C header file for use by user-land software.
+
+Currently the Linux driver itself is missing from this package.")
+ (license license:gpl2+))))
+
(define-public libfabric
(package
(name "libfabric")
- branch master updated (47ab553178 -> 827ec92f44), guix-commits, 2024/11/25
- 01/12: tests: sddm: Update expected message on login screen., guix-commits, 2024/11/25
- 12/12: gnu: gajim-openpgp: Update to 1.6.1., guix-commits, 2024/11/25
- 05/12: gnu: libfabric: Enable libcxi support., guix-commits, 2024/11/25
- 07/12: gnu: python-nbxmpp: Update to 5.0.3., guix-commits, 2024/11/25
- 09/12: gnu: Add python-omemo-dr., guix-commits, 2024/11/25
- 03/12: gnu: Add cxi-driver.,
guix-commits <=
- 10/12: gnu: gajim: Update to 1.9.3., guix-commits, 2024/11/25
- 06/12: gnu: openmpi: Disable static libraries., guix-commits, 2024/11/25
- 08/12: gnu: Add python-protobuf-5., guix-commits, 2024/11/25
- 04/12: gnu: Add libcxi., guix-commits, 2024/11/25
- 11/12: gnu: Deprecate gajim-omemo., guix-commits, 2024/11/25
- 02/12: gnu: Add cassini-headers., guix-commits, 2024/11/25