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}";
|
2015-04-21 02:50:39 +02:00
|
|
|
version = "1.5.3";
|
2010-02-09 08:28:32 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://unbound.net/downloads/${name}.tar.gz";
|
2015-04-21 02:50:39 +02:00
|
|
|
sha256 = "1jly2apag4yg649w3flaq73wdrcfyxnhx5py9j73y7adxmswigbn";
|
2010-02-09 08:28:32 +01:00
|
|
|
};
|
2014-12-23 06:49:51 +01:00
|
|
|
|
2015-04-21 02:50:39 +02:00
|
|
|
buildInputs = [ openssl expat libevent ];
|
2015-01-18 01:35:30 +01:00
|
|
|
|
2014-12-23 06:49:51 +01:00
|
|
|
configureFlags = [
|
|
|
|
"--with-ssl=${openssl}"
|
|
|
|
"--with-libexpat=${expat}"
|
|
|
|
"--with-libevent=${libevent}"
|
|
|
|
"--localstatedir=/var"
|
2015-04-21 02:50:39 +02:00
|
|
|
"--sysconfdir=/etc"
|
2014-12-23 06:49:51 +01:00
|
|
|
];
|
2010-02-09 08:28:32 +01:00
|
|
|
|
2015-04-21 02:50:39 +02:00
|
|
|
installFlags = [ "configfile=\${out}/etc/unbound/unbound.conf" ];
|
|
|
|
|
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
|
|
|
};
|
|
|
|
}
|