summary refs log tree commit diff
path: root/pkgs/servers/dns/bind/9.5.0.nix
blob: 9e73895d8d913199f5404a4228085555edaab133 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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";
  };
}