diff options
author | Ludovic Courtès <ludovic.courtes@inria.fr> | 2024-11-18 14:26:58 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-11-25 11:22:23 +0100 |
commit | d607233d9e3c6962dad1ef0438877c8b2b7a9a3c (patch) | |
tree | 2511c8b68ea046936495807188c63dcec6ecab10 | |
parent | 4978e36866748c050ad11c4731242d6686909fff (diff) | |
download | guix-d607233d9e3c6962dad1ef0438877c8b2b7a9a3c.tar.gz guix-d607233d9e3c6962dad1ef0438877c8b2b7a9a3c.zip |
gnu: Add cassini-headers.
* gnu/packages/linux.scm (cassini-headers): New variable.
Change-Id: I278fe784ed2a0b31831dd6ff19f0c03d193b310a
-rw-r--r-- | gnu/packages/linux.scm | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 3583da37c2..4dc8abb48e 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -9005,6 +9005,34 @@ comparing system environments.") (home-page "https://github.com/jamesodhunt/procenv/") (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 +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.") + (license (list license:gpl2 license:bsd-2))))) ;dual-licensed + (define-public libfabric (package (name "libfabric") |