mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-18 12:47:33 -05:00
gnu: Add rust-sqlite-0.26.
* gnu/packages/crates-io.scm (rust-sqlite-0.26): New variable. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
parent
1828e880ed
commit
a66622de3e
1 changed files with 22 additions and 0 deletions
|
@ -53774,6 +53774,28 @@ (define-public rust-spsc-buffer-0.1
|
|||
"This package provides a single-producer single-consumer lock-free buffer.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public rust-sqlite-0.26
|
||||
(package
|
||||
(name "rust-sqlite")
|
||||
(version "0.26.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "sqlite" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "0snvg09bs0n8skcxkx52lcymdn0l130a2m8fpvxpdhkyq0sabc9z"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:skip-build? #t
|
||||
#:cargo-inputs
|
||||
(("rust-libc" ,rust-libc-0.2)
|
||||
("rust-sqlite3-sys" ,rust-sqlite3-sys-0.13))))
|
||||
(home-page "https://github.com/stainless-steel/sqlite")
|
||||
(synopsis "Interface to SQLite")
|
||||
(description "The package provides an interface to SQLite.")
|
||||
(license (list license:asl2.0 license:expat))))
|
||||
|
||||
(define-public rust-sqlite3-src-0.3
|
||||
(package
|
||||
(name "rust-sqlite3-src")
|
||||
|
|
Loading…
Reference in a new issue