summary refs log tree commit diff
path: root/pkgs/servers/dns/bind/9.5.0.nix
blob: b6361864d10b20f5b12b93571167107aaa60721b (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-9.5.0";
  meta = {
    description = "ISC BIND: a domain name server";
  };
}