summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2025-12-05 10:21:41 +0100
committerLudovic Courtès <ludo@gnu.org>2025-12-11 15:55:23 +0100
commit11425c84e4e6c643961eb2255a0b53c107418e7f (patch)
tree9e95c60c8bb0ab1ed15eefbdf29b347b4962f824 /gnu
parentfdb46ae7b19d45a6a1f5adb660283981bf4b7a1d (diff)
gnu: cassini-headers: Update to 12.0.1.
* gnu/packages/linux.scm (cassini-headers): Update to 12.0.1. Change-Id: I3f03e15552661768fc21c4d75709aa283f26ed8c Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/linux.scm49
1 files changed, 24 insertions, 25 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index 35ebda5eddc..825bcfa7199 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -10012,34 +10012,33 @@ comparing system environments.")
(license license:gpl3+)))
(define-public cassini-headers
- (let ((commit "9a8a738a879f007849fbc69be8e3487a4abf0952")
- (revision "0"))
- (package
- (name "cassini-headers")
- (version (git-version "2.0.0" ;per .spec file
- revision commit))
- (home-page "https://github.com/HewlettPackard/shs-cassini-headers")
- (source (origin
- (method git-fetch)
- (uri (git-reference (url home-page) (commit commit)))
- (file-name (git-file-name name version))
- (sha256
- (base32
- "0a54vwfr29n0i392wdap7rzmq0lb8mxa17d8yljdbm0kzrq48csz"))))
- (build-system copy-build-system)
- (arguments
- (list #:install-plan
- #~'(("include" "include")
- ("share/cassini-headers" "share/cassini-headers"))))
- (synopsis "Cassini network hardware definitions and headers")
- (description
- "This package provides hardware definitions and C headers for use by
+ (package
+ (name "cassini-headers")
+ (version "12.0.1")
+ (home-page "https://github.com/HewlettPackard/shs-cassini-headers")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url home-page)
+ (commit (string-append "release/shs-" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0fvhk42pssw67zba4zq1b73d1m9ysc4g8sfibjmmhc0fwr92iamp"))))
+ (build-system copy-build-system)
+ (arguments
+ (list #:install-plan
+ #~'(("include" "include")
+ ("share/cassini-headers" "share/cassini-headers"))))
+ (synopsis "Cassini network hardware definitions and headers")
+ (description
+ "This package provides hardware definitions and C headers for use by
the Linux driver and by user-space applications for the Cassini/Slingshot
high-speed network interconnect made by HPE (formerly Cray). User-land
software uses @file{cxi_prov_hw.h} from this package.")
- ;; As per include/cxi_prov_hw.h it is __aarch64__ or __x86_64__ only.
- (supported-systems '("x86_64-linux" "aarch64-linux"))
- (license (list license:gpl2 license:bsd-2))))) ;dual-licensed
+ ;; As per include/cxi_prov_hw.h it is __aarch64__ or __x86_64__ only.
+ (supported-systems '("x86_64-linux" "aarch64-linux"))
+ (license (list license:gpl2 license:bsd-2)))) ;dual-licensed
(define-public cxi-driver
(let ((commit "5f0ec0ead6ef3f98542a2ef5e76b89d14dd22150")