mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-14 19:05:10 -05:00
gnu: Add rust-duct-0.13.
* gnu/packages/crates-io.scm (rust-duct-0.13): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
7451f6ff8d
commit
0b85a418a7
1 changed files with 31 additions and 0 deletions
|
@ -2150,6 +2150,37 @@ (define-public rust-dtoa-0.2
|
|||
(base32
|
||||
"0g96cap6si1g6wi62hsdk2fnj3sf5vd4i97zj6163j8hhnsl3n0d"))))))
|
||||
|
||||
(define-public rust-duct-0.13
|
||||
(package
|
||||
(name "rust-duct")
|
||||
(version "0.13.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "duct" version))
|
||||
(file-name
|
||||
(string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1ir3884i1yznkfdccqqbcb9v5sdpcgxlv41hgzncrqaljv18r0wj"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:skip-build? #t
|
||||
#:cargo-inputs
|
||||
(("rust-libc" ,rust-libc-0.2)
|
||||
("rust-once-cell" ,rust-once-cell-1.2)
|
||||
("rust-os-pipe" ,rust-os-pipe-0.8)
|
||||
("rust-shared-child" ,rust-shared-child-0.3))
|
||||
#:cargo-development-inputs
|
||||
(("rust-tempdir" ,rust-tempdir-0.3))))
|
||||
(home-page
|
||||
"https://github.com/oconnor663/duct.rs")
|
||||
(synopsis
|
||||
"Library for running child processes")
|
||||
(description
|
||||
"A library for running child processes.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public rust-either-1.5
|
||||
(package
|
||||
(name "rust-either")
|
||||
|
|
Loading…
Reference in a new issue