2014-04-20 17:16:36 +02:00
|
|
|
{ stdenv, fetchurl, openssl, expat, libevent }:
|
2010-02-09 08:28:32 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2014-12-23 06:49:51 +01:00
|
|
|
name = "unbound-${version}";
|
|
|
|
version = "1.5.1";
|
2010-02-09 08:28:32 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://unbound.net/downloads/${name}.tar.gz";
|
2014-12-23 06:49:51 +01:00
|
|
|
sha256 = "1v00k4b6m9wk0533s2jpg4rv9lhplh7zdp6vx2yyrmrbzc4jgy0g";
|
2010-02-09 08:28:32 +01:00
|
|
|
};
|
2014-12-23 06:49:51 +01:00
|
|
|
|
2014-04-20 17:16:36 +02:00
|
|
|
buildInputs = [openssl expat libevent];
|
2010-02-09 08:28:32 +01:00
|
|
|
|
2015-01-18 01:35:30 +01:00
|
|
|
patches = [
|
|
|
|
# This patch fixes unbound 1.5.1 on linux versions previous to 3.15 which
|
|
|
|
# do not implement IP_PMTUDISC_OMIT.
|
|
|
|
#
|
|
|
|
# It should be discarded when this support makes it into a released
|
|
|
|
# version.
|
|
|
|
./linux-pre-3.15-unbound-1.5.1.patch
|
|
|
|
];
|
|
|
|
|
2014-12-23 06:49:51 +01:00
|
|
|
configureFlags = [
|
|
|
|
"--with-ssl=${openssl}"
|
|
|
|
"--with-libexpat=${expat}"
|
|
|
|
"--with-libevent=${libevent}"
|
|
|
|
"--localstatedir=/var"
|
|
|
|
];
|
2010-02-09 08:28:32 +01:00
|
|
|
|
|
|
|
meta = {
|
2013-10-06 11:49:53 +02:00
|
|
|
description = "Validating, recursive, and caching DNS resolver";
|
2014-04-20 17:16:36 +02:00
|
|
|
license = stdenv.lib.licenses.bsd3;
|
2010-02-09 11:17:13 +01:00
|
|
|
homepage = http://www.unbound.net;
|
2014-04-20 17:16:36 +02:00
|
|
|
maintainers = [ stdenv.lib.maintainers.emery ];
|
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2010-02-09 08:28:32 +01:00
|
|
|
};
|
|
|
|
}
|