me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-const-cstr.

* gnu/packages/crates-io.scm (rust-const-cstr-0.3): New variable.
master
Marius Bakke 2022-07-26 00:50:17 +02:00
parent 28364584af
commit 665fb3b188
No known key found for this signature in database
GPG Key ID: A2A06DF2A33A54FA
1 changed files with 19 additions and 0 deletions

View File

@ -12260,6 +12260,25 @@ idiomatic wrappers for Mac OS X's CommonCrypto library.")
"Common path finds the common prefix between a set of paths.") "Common path finds the common prefix between a set of paths.")
(license (list license:expat license:asl2.0)))) (license (list license:expat license:asl2.0))))
(define-public rust-const-cstr-0.3
(package
(name "rust-const-cstr")
(version "0.3.0")
(source (origin
(method url-fetch)
(uri (crate-uri "const-cstr" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"19ij6m8s16d0i7vma535l7w4x8bcanjcxs7c6n7sci86ydghnggd"))))
(build-system cargo-build-system)
(home-page "https://github.com/cybergeek94/const-cstr")
(synopsis "Create static C-compatible strings from Rust string literals")
(description
"This crate lets you create static C-compatible strings from Rust string
literals.")
(license (list license:expat license:asl2.0))))
;; This package requires features which are unavailable ;; This package requires features which are unavailable
;; on the stable releases of Rust. ;; on the stable releases of Rust.
(define-public rust-compiler-builtins-0.1 (define-public rust-compiler-builtins-0.1