diff options
author | Aleksandr Vityazev <avityazew@gmail.com> | 2023-10-07 03:02:44 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2023-10-22 15:07:19 +0300 |
commit | c2285b733a2e00a2041853556fea739fcf8660c6 (patch) | |
tree | eb1a1764ebdd381f4e0e3a1e87757ff31068bf13 | |
parent | a9768093cc889bc8b85e06b731ce2d9e114d72ce (diff) | |
download | guix-c2285b733a2e00a2041853556fea739fcf8660c6.tar.gz |
gnu: Add rust-gethostname-0.3.
* gnu/packages/crates-io.scm (rust-gethostname-0.3): New variable. (rust-gethostname-0.2): Inherit from rust-gethostname-0.3. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
-rw-r--r-- | gnu/packages/crates-io.scm | 35 |
1 files changed, 28 insertions, 7 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 326d090137..20159f41c5 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -28184,8 +28184,35 @@ Rust.") interfaces on the system.") (license (list license:expat license:bsd-3)))) +(define-public rust-gethostname-0.3 + (package + (name "rust-gethostname") + (version "0.3.0") + (source + (origin + (method url-fetch) + (uri (crate-uri "gethostname" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0xy1wbx5k2bzi4cbaqj9wqgqsbn4f8pm6nsm1d86mibk66xd8rdv")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-test-flags + '("--release" "--" + ;; Not all files included + "--skip=gethostname_matches_system_hostname") + #:cargo-inputs + (("rust-libc" ,rust-libc-0.2) + ("rust-winapi" ,rust-winapi-0.3)))) + (home-page "https://github.com/swsnr/gethostname.rs") + (synopsis "Gethostname for all platforms") + (description "This library provides @code{gethostname()} for all +platforms.") + (license license:asl2.0))) + (define-public rust-gethostname-0.2 (package + (inherit rust-gethostname-0.3) (name "rust-gethostname") (version "0.2.1") (source @@ -28195,19 +28222,13 @@ interfaces on the system.") (file-name (string-append name "-" version ".tar.gz")) (sha256 (base32 "0a609j9dhk816il2f2a01avvi5sqzxh0p38nxwrja7dcpybf54p6")))) - (build-system cargo-build-system) (arguments `(#:tests? #f ; test panics #:cargo-inputs (("rust-libc" ,rust-libc-0.2) ("rust-winapi" ,rust-winapi-0.3)) #:cargo-development-inputs - (("rust-pretty-assertions" ,rust-pretty-assertions-0.6)))) - (home-page "https://github.com/lunaryorn/gethostname.rs") - (synopsis "Gethostname for all platforms") - (description "This library provides @code{gethostname()} for all -platforms.") - (license license:asl2.0))) + (("rust-pretty-assertions" ,rust-pretty-assertions-0.6)))))) (define-public rust-getopts-0.2 (package |