diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2024-01-04 11:39:45 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2024-02-20 13:57:16 +0200 |
commit | df62aa5753900c8da2830bec0b6962a214a424a2 (patch) | |
tree | 691babbc5551526571916b50bf221c69931ce0a0 /gnu/packages | |
parent | a52453aed61594d8168701efdc798a0b48b02301 (diff) |
gnu: Add rust-cust-raw-0.11.
* gnu/packages/crates-io.scm (rust-cust-raw-0.11): New variable.
Change-Id: I27f683fb680bb69a44828293de6b72ce9c37c805
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/crates-io.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 355cf53642..f9d988957a 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -18144,6 +18144,26 @@ shared across CPU and GPU.") (description "This package provices macros for cust.") (license (list license:expat license:asl2.0)))) +(define-public rust-cust-raw-0.11 + (package + (name "rust-cust-raw") + (version "0.11.3") + (source + (origin + (method url-fetch) + (uri (crate-uri "cust_raw" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1y1b82gf0fmaqxhvzjd3cxgd54vvbj3vji68pcl9ijqjvrm0vx7v")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? #t ; Could not find a cuda installation + #:cargo-inputs (("rust-find-cuda-helper" ,rust-find-cuda-helper-0.2)))) + (home-page "https://github.com/Rust-GPU/Rust-CUDA") + (synopsis "Low level bindings to the CUDA Driver API") + (description "Low level bindings to the CUDA Driver API.") + (license (list license:expat license:asl2.0)))) + (define-public rust-custom-derive-0.1 (package (name "rust-custom-derive") |