From mboxrd@z Thu Jan 1 00:00:00 1970 From: Danny Milosavljevic Subject: [PATCH v5 02/17] gnu: Add perl-net-dns. Date: Thu, 28 Jul 2016 23:38:18 +0200 Message-ID: <20160728213833.22057-3-dannym@scratchpost.org> References: <20160728213833.22057-1-dannym@scratchpost.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="------------2.9.1" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:35165) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bSt1T-0007cV-1N for guix-devel@gnu.org; Thu, 28 Jul 2016 17:39:20 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bSt1R-00063q-1r for guix-devel@gnu.org; Thu, 28 Jul 2016 17:39:18 -0400 Received: from dd1012.kasserver.com ([85.13.128.8]:55078) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bSt1Q-00063j-S8 for guix-devel@gnu.org; Thu, 28 Jul 2016 17:39:17 -0400 In-Reply-To: <20160728213833.22057-1-dannym@scratchpost.org> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org This is a multi-part message in MIME format. --------------2.9.1 Content-Type: text/plain; charset=UTF-8; format=fixed Content-Transfer-Encoding: quoted-printable gnu: Add perl-net-dns. * gnu/packages/networking.scm (perl-net-dns): New variable. --- gnu/packages/networking.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) --------------2.9.1 Content-Type: text/x-patch; name="0002-gnu-Add-perl-net-dns.patch" Content-Disposition: attachment; filename="0002-gnu-Add-perl-net-dns.patch" Content-Transfer-Encoding: quoted-printable diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm index 1ef401f..0568836 100644 --- a/gnu/packages/networking.scm +++ b/gnu/packages/networking.scm @@ -24,6 +24,7 @@ ;;; along with GNU Guix. If not, see . =20 (define-module (gnu packages networking) + #:use-module (guix build-system perl) #:use-module ((guix licenses) #:prefix license:) #:use-module (guix packages) #:use-module (guix download) @@ -412,3 +413,26 @@ HTTP(S) request, and receive the reply headers. It = is somewhat similar to by firewalls or when you want to monitor the response time of the actual= web application stack itself.") (license license:gpl2))) ; with permission to link with OpenS= SL + +(define-public perl-net-dns + (package + (name "perl-net-dns") + (version "1.06") + (source + (origin + (method url-fetch) + (uri (string-append + "mirror://cpan/authors/id/N/NL/NLNETLABS/Net-DNS-" + version + ".tar.gz")) + (sha256 + (base32 + "07m5331132h9xkh1i6jv9d80f571yva27iqa31aq4sm31iw7nn53")))) + (build-system perl-build-system) + (inputs + `(("perl-digest-hmac" ,perl-digest-hmac))) + (home-page "http://search.cpan.org/dist/Net-DNS") + (synopsis + "Perl Interface to the Domain Name System") + (description "Net::DNS is the Perl Interface to the Domain Name System= .") + (license license:x11))) --------------2.9.1--