forked from mirrors/nixpkgs
Added BIND
svn path=/nixpkgs/trunk/; revision=12064
This commit is contained in:
parent
0784550c35
commit
3d7f5dd7d6
19
pkgs/servers/dns/bind/9.5.0.nix
Normal file
19
pkgs/servers/dns/bind/9.5.0.nix
Normal 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";
|
||||||
|
};
|
||||||
|
}
|
|
@ -4306,6 +4306,10 @@ let pkgs = rec {
|
||||||
db4Support = true;
|
db4Support = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
bind = builderDefsPackage (selectVersion ../servers/dns/bind "9.5.0") {
|
||||||
|
inherit openssl libtool;
|
||||||
|
} null;
|
||||||
|
|
||||||
dictFun = lib.sumArgs (selectVersion ../servers/dict "1.9.15") {
|
dictFun = lib.sumArgs (selectVersion ../servers/dict "1.9.15") {
|
||||||
inherit builderDefs which;
|
inherit builderDefs which;
|
||||||
flex=flex2534;
|
flex=flex2534;
|
||||||
|
|
Loading…
Reference in a new issue