gnu: Add rust-environment-0.1.

* gnu/packages/crates-io.scm (rust-environment-0.1): New variable.
This commit is contained in:
Hartmut Goebel 2020-03-08 15:33:22 +01:00
parent 33bfe341a2
commit 1a4765d82f
No known key found for this signature in database
GPG key ID: 634A8DFFD3F631DF

View file

@ -6052,6 +6052,26 @@ (define-public rust-env-logger-0.3
(("rust-regex" ,rust-regex-0.1)
("rust-log" ,rust-log-0.3))))))
(define-public rust-environment-0.1
(package
(name "rust-environment")
(version "0.1.1")
(source
(origin
(method url-fetch)
(uri (crate-uri "environment" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "1vh32mcxf3z8xaibwv751zj14d08nh7iwk1vqdj90rkq17i18jqz"))))
(build-system cargo-build-system)
(arguments
`(#:tests? #f)) ;; 3/6 tests fail due to missing file
(home-page "https://github.com/Freyskeyd/environment")
(synopsis "Helper to deal with environment variables")
(description "This package provides helper to deal with environment
variables.")
(license (list license:expat license:asl2.0))))
(define-public rust-envmnt-0.6
(package
(name "rust-envmnt")