From: John Darrington <jmd@gnu.org>
To: guix-devel@gnu.org
Cc: John Darrington <jmd@gnu.org>
Subject: [PATCH] gnu: Add bind
Date: Tue, 30 Aug 2016 18:36:04 +0200 [thread overview]
Message-ID: <1472574964-16954-1-git-send-email-jmd@gnu.org> (raw)
* gnu/packages/networking.scm (bind): New variable.
---
gnu/packages/networking.scm | 46 +++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 46 insertions(+)
diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm
index bdcccce..7bb4a69 100644
--- a/gnu/packages/networking.scm
+++ b/gnu/packages/networking.scm
@@ -10,6 +10,7 @@
;;; Copyright © 2016 Eric Bavier <bavier@member.fsf.org>
;;; Copyright © 2016 ng0 <ng0@we.make.ritual.n0.is>
;;; Coypright © 2016 Arun Isaac <arunisaac@systemreboot.net>
+;;; Coypright © 2016 John Darrington <jmd@gnu.org>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -56,6 +57,51 @@
#:use-module (gnu packages python)
#:use-module (gnu packages tls))
+(define-public bind
+ (package
+ (name "bind")
+ (version "9.10.4-P2")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append
+ "ftp://ftp.isc.org/isc/bind9/" version "/" name "-"
+ version ".tar.gz"))
+ (sha256
+ (base32
+ "08s48h5p916ixjiwgar4w6skc20crmg7yj1y7g89c083zvw8lnxk"))))
+ (build-system gnu-build-system)
+ (arguments
+ `(#:configure-flags
+ (list
+ (string-append "--with-openssl=" (assoc-ref %build-inputs "openssl")))
+
+ #:phases
+ ;; When and if guix provides user namespaces for the build process,
+ ;; then the following can be uncommented and the subsequent "force-test"
+ ;; will not be necessary.
+
+ ;; (modify-phases %standard-phases
+ ;; (add-before 'check 'set-up-loopback
+ ;; (lambda _
+ ;; (system "bin/tests/system/ifconfig.sh up"))))
+ (modify-phases %standard-phases
+ (replace 'check
+ (lambda _
+ (zero? (system* "make" "force-test")))))))
+ (inputs
+ `(("openssl" ,openssl)))
+ (native-inputs `(("perl" ,perl)
+ ("net-tools" ,net-tools)))
+ (synopsis "An implementation of the Domain Name System")
+ (description "BIND is an implementation of the Domain Name System (DNS)
+protocols for the Internet. It is a reference implementation of those
+protocols, but it is also production-grade software, suitable for use in
+high-volume and high-reliability applications. The name BIND stands for
+"Berkeley Internet Name Domain", because the software originated in the early
+1980s at the University of California at Berkeley.")
+ (home-page "https://www.isc.org/downloads/bind")
+ (license license:bsd-2)))
+
(define-public macchanger
(package
(name "macchanger")
--
2.1.4
next reply other threads:[~2016-08-30 16:36 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-08-30 16:36 John Darrington [this message]
2016-08-31 17:52 ` [PATCH] gnu: Add bind Leo Famulari
2016-08-31 18:38 ` John Darrington
2016-09-10 19:25 ` Leo Famulari
2016-09-10 22:06 ` John Darrington
2016-09-10 22:08 ` John Darrington
2016-09-18 13:57 ` John Darrington
2016-09-18 15:03 ` Hartmut Goebel
2016-09-18 17:52 ` John Darrington
-- strict thread matches above, loose matches on Subject: below --
2016-08-29 19:56 John Darrington
2016-08-29 20:08 ` John Darrington
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=1472574964-16954-1-git-send-email-jmd@gnu.org \
--to=jmd@gnu.org \
--cc=guix-devel@gnu.org \
/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).