efraim pushed a commit to branch rust-team
in repository guix.
commit a5ebca368be63fa94a528b1a33c37d6c92ab796e
Author: Efraim Flashner <[email protected]>
AuthorDate: Tue Dec 24 22:19:42 2024 +0200
gnu: Add rust-env-home-0.1.
* gnu/packages/crates-io.scm (rust-env-home-0.1): New variable.
Change-Id: Ie267587948f81df8d674742568d1bb458464a100
---
gnu/packages/crates-io.scm | 18 ++++++++++++++++++
1 file changed, 18 insertions(+)
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 526030371f..ebd224ba61 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -26146,6 +26146,24 @@ It is not a public API.")
(description "Filter log events using environment variables.")
(license (list license:expat license:asl2.0))))
+(define-public rust-env-home-0.1
+ (package
+ (name "rust-env-home")
+ (version "0.1.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (crate-uri "env_home" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32 "1zn08mk95rjh97831rky1n944k024qrwjhbcgb0xv9zhrh94xy67"))))
+ (build-system cargo-build-system)
+ (home-page "https://github.com/notpeter/env-home")
+ (synopsis "Get the user home directory in a cross-platform way")
+ (description
+ "This package gets the user home directory in a cross-platform way.")
+ (license (list license:expat license:asl2.0))))
+
(define-public rust-env-logger-0.11
(package
(name "rust-env-logger")