2014-04-20 19:16:36 +04:00
|
|
|
{ stdenv, fetchurl, openssl, expat, libevent }:
|
2010-02-09 10:28:32 +03:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2014-12-23 08:49:51 +03:00
|
|
|
name = "unbound-${version}";
|
2016-06-22 00:22:18 +03:00
|
|
|
version = "1.5.9";
|
2010-02-09 10:28:32 +03:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://unbound.net/downloads/${name}.tar.gz";
|
2016-06-22 00:22:18 +03:00
|
|
|
sha256 = "01328cfac99ab5b8c47115151896a244979e442e284eb962c0ea84b7782b6990";
|
2010-02-09 10:28:32 +03:00
|
|
|
};
|
2014-12-23 08:49:51 +03:00
|
|
|
|
2015-10-05 11:53:30 +03:00
|
|
|
outputs = [ "out" "lib" "man" ]; # "dev" would only split ~20 kB
|
|
|
|
|
2015-04-21 03:50:39 +03:00
|
|
|
buildInputs = [ openssl expat libevent ];
|
2015-01-18 03:35:30 +03:00
|
|
|
|
2014-12-23 08:49:51 +03:00
|
|
|
configureFlags = [
|
2015-10-05 16:58:37 +03:00
|
|
|
"--with-ssl=${openssl.dev}"
|
2016-04-16 19:49:30 +03:00
|
|
|
"--with-libexpat=${expat.dev}"
|
2015-10-05 16:58:37 +03:00
|
|
|
"--with-libevent=${libevent.dev}"
|
2014-12-23 08:49:51 +03:00
|
|
|
"--localstatedir=/var"
|
2015-04-21 03:50:39 +03:00
|
|
|
"--sysconfdir=/etc"
|
2016-03-06 15:50:41 +03:00
|
|
|
"--sbindir=\${out}/bin"
|
2016-02-15 06:27:49 +03:00
|
|
|
"--enable-pie"
|
|
|
|
"--enable-relro-now"
|
2014-12-23 08:49:51 +03:00
|
|
|
];
|
2010-02-09 10:28:32 +03:00
|
|
|
|
2015-04-21 03:50:39 +03:00
|
|
|
installFlags = [ "configfile=\${out}/etc/unbound/unbound.conf" ];
|
|
|
|
|
2015-10-05 17:05:40 +03:00
|
|
|
# get rid of runtime dependencies on $dev outputs
|
2015-10-15 14:57:38 +03:00
|
|
|
postInstall = ''substituteInPlace "$lib/lib/libunbound.la" ''
|
|
|
|
+ stdenv.lib.concatMapStrings
|
|
|
|
(pkg: " --replace '-L${pkg.dev}/lib' '-L${pkg.out}/lib' ")
|
|
|
|
[ openssl expat libevent ];
|
2015-10-05 11:53:30 +03:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2013-10-06 13:49:53 +04:00
|
|
|
description = "Validating, recursive, and caching DNS resolver";
|
2015-10-05 11:53:30 +03:00
|
|
|
license = licenses.bsd3;
|
2010-02-09 13:17:13 +03:00
|
|
|
homepage = http://www.unbound.net;
|
2016-02-08 04:20:00 +03:00
|
|
|
maintainers = with maintainers; [ ehmry fpletz ];
|
2014-04-20 19:16:36 +04:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2010-02-09 10:28:32 +03:00
|
|
|
};
|
|
|
|
}
|