3
0
Fork 0
forked from mirrors/nixpkgs

Added BIND

svn path=/nixpkgs/trunk/; revision=12064
This commit is contained in:
Michael Raskin 2008-06-12 18:10:08 +00:00
parent 0784550c35
commit 3d7f5dd7d6
2 changed files with 23 additions and 0 deletions

View file

@ -0,0 +1,19 @@
args : with args;
rec {
src = fetchurl {
url = http://ftp.isc.org/isc/bind9/9.5.0/bind-9.5.0.tar.gz;
sha256 = "0qfxipj6v9hs9plx388ysnyvpkiamgxpsq8xqzw9hliag4nc1d7v";
};
buildInputs = [openssl libtool];
configureFlags = ["--with-libtool" "--with-openssl=${openssl}"];
/* doConfigure should be specified separately */
phaseNames = ["doConfigure" "doMakeInstall"];
name = "bind-" + version;
meta = {
description = "ISC BIND: a domain name server";
};
}

View file

@ -4306,6 +4306,10 @@ let pkgs = rec {
db4Support = true;
};
bind = builderDefsPackage (selectVersion ../servers/dns/bind "9.5.0") {
inherit openssl libtool;
} null;
dictFun = lib.sumArgs (selectVersion ../servers/dict "1.9.15") {
inherit builderDefs which;
flex=flex2534;