2014-04-20 16:16:36 +01:00
|
|
|
{ stdenv, fetchurl, openssl, expat, libevent }:
|
2010-02-09 07:28:32 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2014-12-23 05:49:51 +00:00
|
|
|
name = "unbound-${version}";
|
2015-04-21 01:50:39 +01:00
|
|
|
version = "1.5.3";
|
2010-02-09 07:28:32 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://unbound.net/downloads/${name}.tar.gz";
|
2015-04-21 01:50:39 +01:00
|
|
|
sha256 = "1jly2apag4yg649w3flaq73wdrcfyxnhx5py9j73y7adxmswigbn";
|
2010-02-09 07:28:32 +00:00
|
|
|
};
|
2014-12-23 05:49:51 +00:00
|
|
|
|
2015-04-21 01:50:39 +01:00
|
|
|
buildInputs = [ openssl expat libevent ];
|
2015-01-18 00:35:30 +00:00
|
|
|
|
2014-12-23 05:49:51 +00:00
|
|
|
configureFlags = [
|
|
|
|
"--with-ssl=${openssl}"
|
|
|
|
"--with-libexpat=${expat}"
|
|
|
|
"--with-libevent=${libevent}"
|
|
|
|
"--localstatedir=/var"
|
2015-04-21 01:50:39 +01:00
|
|
|
"--sysconfdir=/etc"
|
2014-12-23 05:49:51 +00:00
|
|
|
];
|
2010-02-09 07:28:32 +00:00
|
|
|
|
2015-04-21 01:50:39 +01:00
|
|
|
installFlags = [ "configfile=\${out}/etc/unbound/unbound.conf" ];
|
|
|
|
|
2010-02-09 07:28:32 +00:00
|
|
|
meta = {
|
2013-10-06 10:49:53 +01:00
|
|
|
description = "Validating, recursive, and caching DNS resolver";
|
2014-04-20 16:16:36 +01:00
|
|
|
license = stdenv.lib.licenses.bsd3;
|
2010-02-09 10:17:13 +00:00
|
|
|
homepage = http://www.unbound.net;
|
2015-12-05 21:41:25 +00:00
|
|
|
maintainers = [ stdenv.lib.maintainers.ehmry ];
|
2014-04-20 16:16:36 +01:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2010-02-09 07:28:32 +00:00
|
|
|
};
|
|
|
|
}
|