diff options
author | Franz Geffke <m@f-a.nz> | 2025-03-26 16:21:48 +0000 |
---|---|---|
committer | Franz Geffke <m@f-a.nz> | 2025-03-26 16:21:48 +0000 |
commit | 0fbf02eeded3d11df668813a7523e23ae53a885d (patch) | |
tree | 394ea762c48554a9d1d4ca55ccc011aa4aef2ac9 | |
parent | 8be0b4cf1f2851c98347022d9864dcac8bf7d2cb (diff) |
px: rust-hyperlocal: Update to v0.9.1
-rw-r--r-- | px/packages/crates-io.scm | 30 |
1 files changed, 29 insertions, 1 deletions
diff --git a/px/packages/crates-io.scm b/px/packages/crates-io.scm index 9aa944b..e371c77 100644 --- a/px/packages/crates-io.scm +++ b/px/packages/crates-io.scm @@ -382,4 +382,32 @@ and manipulating YAML data.") "This package provides a robust Rust library that simplifies the serialization and deserialization of Rust data structures to and from YAML format using the widely-used Serde framework.") - (license (list license:expat license:asl2.0))))
\ No newline at end of file + (license (list license:expat license:asl2.0)))) + +(define-public rust-hyperlocal-0.9 + (package + (name "rust-hyperlocal") + (version "0.9.1") + (source + (origin + (method url-fetch) + (uri (crate-uri "hyperlocal" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1iy8rhsap5iyigj6s86nk449zl5bahjycy2mswy6nlllp7imqv4q")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs (("rust-hex" ,rust-hex-0.4) + ("rust-http-body-util" ,rust-http-body-util-0.1) + ("rust-hyper" ,rust-hyper-1) + ("rust-hyper-util" ,rust-hyper-util-0.1) + ("rust-pin-project-lite" ,rust-pin-project-lite-0.2) + ("rust-tokio" ,rust-tokio-1) + ("rust-tower-service" ,rust-tower-service-0.3)) + #:cargo-development-inputs (("rust-thiserror" ,rust-thiserror-1) + ("rust-tokio" ,rust-tokio-1)))) + (home-page "https://github.com/softprops/hyperlocal") + (synopsis "Hyper bindings for Unix domain sockets") + (description + "This package provides Hyper bindings for Unix domain sockets.") + (license license:expat)))
\ No newline at end of file |