3d7f5dd7d6
svn path=/nixpkgs/trunk/; revision=12064
20 lines
491 B
Nix
20 lines
491 B
Nix
|
|
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";
|
|
};
|
|
}
|