gnu: Add rust-vsock-0.3.
* gnu/packages/crates-io.scm (rust-vsock-0.3): New variable.
This commit is contained in:
parent
c0042d1c6c
commit
9622bff8e9
1 changed files with 25 additions and 0 deletions
|
@ -74715,6 +74715,31 @@ (define-public rust-volatile-register-0.2
|
|||
hardware registers.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-vsock-0.3
|
||||
(package
|
||||
(name "rust-vsock")
|
||||
(version "0.3.0")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "vsock" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0mwwcjk2yd3fi5ryv5xhd7569bmcj0dlsmi4bh4jh6qypzq1v3jc"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:tests? #f ; Tests not runnable from the build environment.
|
||||
#:cargo-inputs
|
||||
(("rust-libc" ,rust-libc-0.2)
|
||||
("rust-nix" ,rust-nix-0.24))
|
||||
#:cargo-development-inputs
|
||||
(("rust-rand" ,rust-rand-0.8)
|
||||
("rust-sha2" ,rust-sha2-0.10))))
|
||||
(home-page "https://github.com/rust-vsock/vsock-rs")
|
||||
(synopsis "Virtio socket support for Rust")
|
||||
(description "This package provdies virtio socket support for Rust.")
|
||||
(license license:asl2.0)))
|
||||
|
||||
(define-public rust-vswhom-0.1
|
||||
(package
|
||||
(name "rust-vswhom")
|
||||
|
|
Loading…
Reference in a new issue