diff options
author | Jaeme Sifat <jaeme@runbox.com> | 2024-01-20 18:30:22 -0500 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2024-02-20 13:58:27 +0200 |
commit | b5dc8e9c139dc886dbc72b4735863baf0f59947a (patch) | |
tree | a8a9cbf4a588c7a4f4f0f4f12b1ee31107174729 /gnu/packages | |
parent | 7dec57f710810f97c770c8247d4610d26aaba4b5 (diff) |
gnu: Add rust-sd-notify-0.4.
* gnu/packages/crates-io.scm (rust-sd-notify-0.4): New variable.
Change-Id: Ib38448d785c23f760fd867656a0057233dc72377
Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/crates-io.scm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 68c3efd21a..81558f9ccb 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -57330,6 +57330,25 @@ Pwrite traits from the scroll crate.") ("rust-smithay-client-toolkit" ,rust-smithay-client-toolkit-0.16) ("rust-tiny-skia" ,rust-tiny-skia-0.7)))))) +(define-public rust-sd-notify-0.4 + (package + (name "rust-sd-notify") + (version "0.4.1") + (source + (origin + (method url-fetch) + (uri (crate-uri "sd-notify" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0clc887rjdz0796c1lsbwnrgmcis4b30gyy3qb4v8zg0yf03c7k2")))) + (build-system cargo-build-system) + (home-page "https://github.com/lnicola/sd-notify") + (synopsis "Lightweight crate for systemd service state notifications") + (description + "This package provides a lightweight crate for systemd service state +notifications.") + (license (list license:expat license:asl2.0)))) + (define-public rust-seahash-3 (package (name "rust-seahash") |