mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 06:18:07 -05:00
gnu: Add rust-dns-sd-0.1.
* gnu/packages/crates-io.scm (rust-dns-sd-0.1): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
36c12e7780
commit
b079d483ff
1 changed files with 24 additions and 0 deletions
|
@ -58,6 +58,7 @@ (define-module (gnu packages crates-io)
|
|||
#:use-module (gnu packages)
|
||||
#:use-module (gnu packages admin)
|
||||
#:use-module (gnu packages autotools)
|
||||
#:use-module (gnu packages avahi)
|
||||
#:use-module (gnu packages bash)
|
||||
#:use-module (gnu packages cmake)
|
||||
#:use-module (gnu packages compression)
|
||||
|
@ -18604,6 +18605,29 @@ (define-public rust-dns-parser-0.8
|
|||
not support network, only raw protocol parser.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-dns-sd-0.1
|
||||
(package
|
||||
(name "rust-dns-sd")
|
||||
(version "0.1.3")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "dns-sd" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "11r0jymjshfnn3sh2nqjhrikk4r5rr1g36sip9iqy8i0xafm0j6p"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs
|
||||
(("rust-libc" ,rust-libc-0.2))
|
||||
#:cargo-development-inputs
|
||||
(("rust-pkg-config" ,rust-pkg-config-0.3))))
|
||||
(inputs (list avahi))
|
||||
(native-inputs (list pkg-config))
|
||||
(home-page "https://github.com/plietar/rust-dns-sd")
|
||||
(synopsis "Rust binding for DNS-SD")
|
||||
(description "Rust bindings for DNS Service Discovery (DNS-SD).")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public rust-doc-comment-0.3
|
||||
(package
|
||||
(name "rust-doc-comment")
|
||||
|
|
Loading…
Reference in a new issue