mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-30 08:02:38 -05:00
gnu: Add rust-dotenvy-0.15.
* gnu/packages/crates-io.scm (rust-dotenvy-0.15): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
27b64d3efa
commit
188730c17c
1 changed files with 31 additions and 0 deletions
|
@ -20967,6 +20967,37 @@ (define-public rust-dotenv-0.10
|
|||
("rust-regex" ,rust-regex-0.2)
|
||||
("rust-syn" ,rust-syn-0.11))))))
|
||||
|
||||
(define-public rust-dotenvy-0.15
|
||||
(package
|
||||
(name "rust-dotenvy")
|
||||
(version "0.15.7")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "dotenvy" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"16s3n973n5aqym02692i1npb079n5mb0fwql42ikmwn8wnrrbbqs"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-test-flags
|
||||
;; Not all files included.
|
||||
'("--release" "--"
|
||||
"--skip=dotenv"
|
||||
"--skip=dotenv_iter"
|
||||
"--skip=dotenv_override"
|
||||
"--skip=from_filename"
|
||||
"--skip=from_filename_override")
|
||||
#:cargo-inputs
|
||||
(("rust-clap" ,rust-clap-3))
|
||||
#:cargo-development-inputs
|
||||
(("rust-once-cell" ,rust-once-cell-1)
|
||||
("rust-tempfile" ,rust-tempfile-3))))
|
||||
(home-page "https://github.com/allan2/dotenvy")
|
||||
(synopsis "Fork of the dotenv crate")
|
||||
(description "This package provides a fork of the dotenv crate.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public rust-draw-state-0.8
|
||||
(package
|
||||
(name "rust-draw-state")
|
||||
|
|
Loading…
Reference in a new issue