rekado pushed a commit to branch python-team
in repository guix.
commit 615ade8f13dde3b777c0cc05adb4502c5183b37c
Author: Nicolas Graves <[email protected]>
AuthorDate: Wed Feb 19 23:30:49 2025 +0100
gnu: Add rust-notify-types-1.
* gnu/packages/crates-io.scm (rust-notify-types-1): New variable.
---
gnu/packages/crates-io.scm | 23 +++++++++++++++++++++++
1 file changed, 23 insertions(+)
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 68c52b2772..19499ad16e 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -47595,6 +47595,29 @@ client and server")
Rust dbus client and server.")
(license (list license:expat license:asl2.0))))
+(define-public rust-notify-types-1
+ (package
+ (name "rust-notify-types")
+ (version "1.0.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (crate-uri "notify-types" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32 "0x5idrpxzf70ng88rz28dqmgx1jyddf0vxx1x3csw09fw6skqpaq"))))
+ (build-system cargo-build-system)
+ (arguments
+ `(#:cargo-inputs (("rust-instant" ,rust-instant-0.1)
+ ("rust-serde" ,rust-serde-1))
+ #:cargo-development-inputs (("rust-insta" ,rust-insta-1)
+ ("rust-rstest" ,rust-rstest-0.21)
+ ("rust-serde-json" ,rust-serde-json-1))))
+ (home-page "https://github.com/notify-rs/notify")
+ (synopsis "Types used by the notify crate")
+ (description "This package provides rust types used by the notify crate.")
+ (license (list license:expat license:asl2.0))))
+
(define-public rust-notmuch-0.8
(package
(name "rust-notmuch")