mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: Add rust-env-proxy-0.4.
* gnu/packages/crates-io.scm (rust-env-proxy-0.4): New variable. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
parent
e8444403ec
commit
ddcbbf8935
1 changed files with 23 additions and 0 deletions
|
@ -20064,6 +20064,29 @@ (define-public rust-env-logger-0.3
|
|||
(("rust-regex" ,rust-regex-0.1)
|
||||
("rust-log" ,rust-log-0.3))))))
|
||||
|
||||
(define-public rust-env-proxy-0.4
|
||||
(package
|
||||
(name "rust-env-proxy")
|
||||
(version "0.4.1")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "env_proxy" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1qabqhgybx1jzh6dmpx7kssciw312i8aa6al7fj0d12k32z1jl1s"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:skip-build? #t
|
||||
#:cargo-inputs
|
||||
(("rust-log" ,rust-log-0.4) ("rust-url" ,rust-url-2))))
|
||||
(home-page "https://github.com/inejge/env_proxy")
|
||||
(synopsis "Proxy URL from the environment variables")
|
||||
(description
|
||||
"This package provides a way to determinate proxy parameters for a URL
|
||||
from the environment.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-environment-0.1
|
||||
(package
|
||||
(name "rust-environment")
|
||||
|
|
Loading…
Reference in a new issue