mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-18 04:37:36 -05:00
gnu: Add rust-rusqlite-0.19.
* gnu/packages/crates-io.scm (rust-rusqlite-0.19): New variable.
This commit is contained in:
parent
87bd8ae928
commit
bf3033ef9c
1 changed files with 38 additions and 0 deletions
|
@ -33627,6 +33627,44 @@ (define-public rust-rusqlite-0.23
|
|||
(native-inputs
|
||||
`(("pkg-config" ,pkg-config)))))
|
||||
|
||||
(define-public rust-rusqlite-0.19
|
||||
(package
|
||||
(inherit rust-rusqlite-0.23)
|
||||
(name "rust-rusqlite")
|
||||
(version "0.19.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "rusqlite" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "19xq7s0kzhlljm3hqx0vidr91ia8hl49r4m5gwdj9dyywgks5g3f"))))
|
||||
(arguments
|
||||
`(#:cargo-inputs
|
||||
(("rust-bitflags" ,rust-bitflags-1)
|
||||
("rust-byteorder" ,rust-byteorder-1)
|
||||
("rust-chrono" ,rust-chrono-0.4)
|
||||
("rust-csv" ,rust-csv-1)
|
||||
("rust-fallible-iterator" ,rust-fallible-iterator-0.2)
|
||||
("rust-fallible-streaming-iterator"
|
||||
,rust-fallible-streaming-iterator-0.1)
|
||||
("rust-lazy-static" ,rust-lazy-static-1)
|
||||
("rust-libsqlite3-sys" ,rust-libsqlite3-sys-0.15)
|
||||
("rust-lru-cache" ,rust-lru-cache-0.1)
|
||||
("rust-memchr" ,rust-memchr-2)
|
||||
("rust-serde-json" ,rust-serde-json-1)
|
||||
("rust-time" ,rust-time-0.1)
|
||||
("rust-url" ,rust-url-1)
|
||||
("rust-uuid" ,rust-uuid-0.7))
|
||||
#:cargo-development-inputs
|
||||
(("rust-lazy-static" ,rust-lazy-static-1)
|
||||
("rust-regex" ,rust-regex-1)
|
||||
("rust-tempdir" ,rust-tempdir-0.3)
|
||||
("rust-unicase" ,rust-unicase-2)
|
||||
("rust-uuid" ,rust-uuid-0.7))))
|
||||
(inputs
|
||||
`(("sqlite" ,sqlite)))))
|
||||
|
||||
(define-public rust-rust-argon2-0.7
|
||||
(package
|
||||
(name "rust-rust-argon2")
|
||||
|
|
Loading…
Reference in a new issue