From 498911d31597ae96882092998ac32e7986d85ae9 Mon Sep 17 00:00:00 2001 From: Mathieu Othacehe Date: Wed, 2 Jan 2019 19:28:18 +0100 Subject: gnu: Add libmicrodns. * gnu/packages/dns.scm (libmicrodns): New package. --- gnu/packages/dns.scm | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) (limited to 'gnu/packages') diff --git a/gnu/packages/dns.scm b/gnu/packages/dns.scm index c7b630364d..2ebc3d8dad 100644 --- a/gnu/packages/dns.scm +++ b/gnu/packages/dns.scm @@ -10,6 +10,7 @@ ;;; Copyright © 2017 Vasile Dumitrascu ;;; Copyright © 2017 Gregor Giesen ;;; Copyright © 2018 Oleg Pykhalov +;;; Copyright © 2019 Mathieu Othacehe ;;; ;;; This file is part of GNU Guix. ;;; @@ -781,3 +782,30 @@ attempts the update when it has changed.") "@command{hnsd} is a @dfn{host name resolver} for the Handshake Naming System (HNS) peer-to-peer network.") (license license:expat)))) + +(define-public libmicrodns + (package + (name "libmicrodns") + (version "0.0.10") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/videolabs/libmicrodns") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1xvl9k49ng35wbsqmnjnyqvkyjf8dcq2ywsq3jp3wh0rgmxhq2fh")))) + (build-system gnu-build-system) + (native-inputs + `(("pkg-config" ,pkg-config) + ("autoconf" ,autoconf) + ("automake" ,automake) + ("libtool" ,libtool))) + (home-page "https://github.com/videolabs/libmicrodns") + (synopsis "Minimal mDNS resolver library") + (description "@code{libmicrodns} provides a minimal implementation of a +mDNS resolver as well as an announcer. mDNS (Multicast Domain Name System) is +a zero-config service that allows one to resolve host names to IP addresses in +local networks.") + (license license:lgpl2.1))) -- cgit v1.2.3 ubmit' value='search'/>
AgeCommit message (Expand)Author
2017-12-11gnu: skalibs: Fix non-reproducibility issue....Z. Ren
2017-08-22gnu: skalibs: Build reproducibly....Z. Ren