From: zenmaya via Guix-patches via <guix-patches@gnu.org>
To: 70177@debbugs.gnu.org
Cc: zenmaya <maya@zenmaya.xyz>, Efraim Flashner <efraim@flashner.co.il>
Subject: [bug#70177] [PATCH 008/120] gnu: Add rust-listenfd
Date: Thu, 4 Apr 2024 08:07:22 +0200 [thread overview]
Message-ID: <fc640f690c1863d5d77919d610c71659d2cb9f47.1712173212.git.maya@zenmaya.xyz> (raw)
In-Reply-To: <cover.1712173212.git.maya@zenmaya.xyz>
Change-Id: I80eb0a80b6872ac4de9f154b79e51c6f68c33ef3
---
gnu/packages/crates-io.scm | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 6edc0af262..4a1bb0bab3 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -23151,6 +23151,31 @@ (define-public rust-fastrand-1
("rust-wasm-bindgen-test" ,rust-wasm-bindgen-test-0.3)
("rust-wyhash" ,rust-wyhash-0.5))))))
+(define-public rust-listenfd-1
+ (package
+ (name "rust-listenfd")
+ (version "1.0.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (crate-uri "listenfd" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32 "15jc2xgrp4j6508s5f9d9gq6w1ssgv2mvc5b3795jqnrmiih8l70"))))
+ (build-system cargo-build-system)
+ (arguments
+ `(#:skip-build? #t
+ #:cargo-inputs (("rust-libc" ,rust-libc-0.2)
+ ("rust-uuid" ,rust-uuid-1)
+ ("rust-winapi" ,rust-winapi-0.3))))
+ (home-page "https://github.com/mitsuhiko/rust-listenfd")
+ (synopsis
+ "A simple library to work with listenfds passed from the outside (systemd/catflap socket activation)")
+ (description
+ "This package provides a simple library to work with listenfds passed from the
+outside (systemd/catflap socket activation)")
+ (license license:asl2.0)))
+
(define-public rust-fd-lock-3
(package
(name "rust-fd-lock")
--
2.41.0
next prev parent reply other threads:[~2024-04-04 12:53 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-04-03 19:48 [bug#70177] [PATCH 000/120] Add wasmtime zenmaya via Guix-patches via
2024-04-04 6:07 ` [bug#70177] [PATCH 001/120] gnu: Add rust-addr2line zenmaya via Guix-patches via
2024-04-04 6:07 ` [bug#70177] [PATCH 002/120] gnu: Add rust-afl zenmaya via Guix-patches via
2024-04-04 6:07 ` [bug#70177] [PATCH 003/120] gnu: Update rust-arbitrary zenmaya via Guix-patches via
2024-04-04 6:07 ` [bug#70177] [PATCH 004/120] gnu: Add rust-bumpalo zenmaya via Guix-patches via
2024-04-04 6:07 ` [bug#70177] [PATCH 005/120] gnu: Add rust-cap-net-ext zenmaya via Guix-patches via
2024-04-04 6:07 ` [bug#70177] [PATCH 006/120] gnu: Update rust-cpal zenmaya via Guix-patches via
2024-04-04 6:07 ` [bug#70177] [PATCH 007/120] gnu: Add rust-fallible-iterator zenmaya via Guix-patches via
2024-04-04 6:07 ` zenmaya via Guix-patches via [this message]
2024-04-04 6:07 ` [bug#70177] [PATCH 009/120] gnu: Add rust-fd-lock-4 zenmaya via Guix-patches via
2024-04-04 6:07 ` [bug#70177] [PATCH 010/120] gnu: Add rust-fs-set-times-0.20 zenmaya via Guix-patches via
2024-04-04 6:07 ` [bug#70177] [PATCH 011/120] gnu: Add rust-ambient-authority zenmaya via Guix-patches via
2024-04-04 6:07 ` [bug#70177] [PATCH 012/120] gnu: Add rust-gimli-0.28 zenmaya via Guix-patches via
2024-04-04 6:07 ` [bug#70177] [PATCH 013/120] gnu: Update rust-iana-time-zone zenmaya via Guix-patches via
2024-04-04 6:07 ` [bug#70177] [PATCH 014/120] gnu: Add rust-arf-strings zenmaya via Guix-patches via
2024-04-04 6:07 ` [bug#70177] [PATCH 015/120] gnu: Add rust-cap-primitives zenmaya via Guix-patches via
2024-04-04 6:07 ` [bug#70177] [PATCH 016/120] gnu: Add rust-cap-time-ext zenmaya via Guix-patches via
2024-04-04 6:07 ` [bug#70177] [PATCH 017/120] gnu: Add rust-cap-rand zenmaya via Guix-patches via
2024-04-04 6:07 ` [bug#70177] [PATCH 018/120] gnu: Add rust-cap-std zenmaya via Guix-patches via
2024-04-04 6:07 ` [bug#70177] [PATCH 019/120] gnu: Add rust-cap-fs-ext zenmaya via Guix-patches via
2024-04-04 6:07 ` [bug#70177] [PATCH 020/120] gnu: Add rust-io-extras zenmaya via Guix-patches via
2024-05-01 21:43 ` [bug#70177] [PATCH 000/120] Add wasmtime Ludovic Courtès
2024-05-29 20:04 ` Maya via Guix-patches via
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://guix.gnu.org/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=fc640f690c1863d5d77919d610c71659d2cb9f47.1712173212.git.maya@zenmaya.xyz \
--to=guix-patches@gnu.org \
--cc=70177@debbugs.gnu.org \
--cc=efraim@flashner.co.il \
--cc=maya@zenmaya.xyz \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/guix.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).