1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-19 03:47:13 -04:00
nixpkgs/pkgs/servers/dns/bind/default.nix

33 lines
819 B
Nix
Raw Normal View History

{ stdenv, fetchurl, openssl, libtool, perl, libxml2 }:
let version = "9.9.2-P2"; in
stdenv.mkDerivation rec {
name = "bind-${version}";
src = fetchurl {
url = "http://ftp.isc.org/isc/bind9/${version}/${name}.tar.gz";
sha256 = "1lk5npyr6bkm4gs2m90k4s8lmlcpfdphzqhi2hjnj2amwcs2g0pz";
};
patchPhase = ''
sed -i 's/^\t.*run/\t/' Makefile.in
'';
buildInputs = [ openssl libtool perl libxml2 ];
/* Why --with-libtool? */
configureFlags = [ "--with-libtool" "--with-openssl=${openssl}"
"--localstatedir=/var" ];
meta = {
homepage = "http://www.isc.org/software/bind";
description = "ISC BIND: a domain name server";
2013-04-01 04:18:44 -04:00
license = stdenv.lib.licenses.isc;
maintainers = with stdenv.lib.maintainers; [viric simons];
platforms = with stdenv.lib.platforms; linux;
};
}