mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-22 01:56:22 +01:00
gnu: Add rust-snappy-cpp-0.1.
* gnu/packages/crates-io.scm (rust-snappy-cpp-0.1): New variable.
This commit is contained in:
parent
7c98a84551
commit
a8ffe06908
1 changed files with 24 additions and 0 deletions
|
@ -50306,6 +50306,30 @@ (define-public rust-snap-1
|
|||
algorithm. Includes streaming compression and decompression.")
|
||||
(license license:bsd-3)))
|
||||
|
||||
(define-public rust-snappy-cpp-0.1
|
||||
(package
|
||||
(name "rust-snappy-cpp")
|
||||
(version "0.1.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "snappy-cpp" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "0sxga9z8sg4gp6ghyz1p8r3c6flzjw57dlqdxavhvcjr1iwcfki3"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:skip-build? #t
|
||||
#:cargo-inputs
|
||||
(("rust-libc" ,rust-libc-0.2)
|
||||
("rust-pkg-config" ,rust-pkg-config-0.3))))
|
||||
(home-page "https://github.com/BurntSushi/snap")
|
||||
(synopsis "Simple Snappy C++ bindings for testing and benchmarking")
|
||||
(description
|
||||
"This package provides simple Snappy C++ bindings for testing and
|
||||
benchmarking.")
|
||||
(license license:bsd-3)))
|
||||
|
||||
(define-public rust-socket2-0.4
|
||||
(package
|
||||
(name "rust-socket2")
|
||||
|
|
Loading…
Reference in a new issue