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}";
|
2016-10-22 19:16:20 +01:00
|
|
|
version = "1.5.10";
|
2010-02-09 07:28:32 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://unbound.net/downloads/${name}.tar.gz";
|
2016-10-22 19:16:20 +01:00
|
|
|
sha256 = "11lli8jgq4n917gcx6nw728g1hqc2lszwlxa5mdb78m2ri7qp6x3";
|
2010-02-09 07:28:32 +00:00
|
|
|
};
|
2014-12-23 05:49:51 +00:00
|
|
|
|
2015-10-05 09:53:30 +01:00
|
|
|
outputs = [ "out" "lib" "man" ]; # "dev" would only split ~20 kB
|
|
|
|
|
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 = [
|
2015-10-05 14:58:37 +01:00
|
|
|
"--with-ssl=${openssl.dev}"
|
2016-04-16 17:49:30 +01:00
|
|
|
"--with-libexpat=${expat.dev}"
|
2015-10-05 14:58:37 +01:00
|
|
|
"--with-libevent=${libevent.dev}"
|
2014-12-23 05:49:51 +00:00
|
|
|
"--localstatedir=/var"
|
2015-04-21 01:50:39 +01:00
|
|
|
"--sysconfdir=/etc"
|
2016-03-06 12:50:41 +00:00
|
|
|
"--sbindir=\${out}/bin"
|
2016-02-15 03:27:49 +00:00
|
|
|
"--enable-pie"
|
|
|
|
"--enable-relro-now"
|
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" ];
|
|
|
|
|
2015-10-05 15:05:40 +01:00
|
|
|
# get rid of runtime dependencies on $dev outputs
|
2015-10-15 12:57:38 +01: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 09:53:30 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2013-10-06 10:49:53 +01:00
|
|
|
description = "Validating, recursive, and caching DNS resolver";
|
2015-10-05 09:53:30 +01:00
|
|
|
license = licenses.bsd3;
|
2016-10-22 19:16:20 +01:00
|
|
|
homepage = https://www.unbound.net;
|
2016-02-08 01:20:00 +00:00
|
|
|
maintainers = with maintainers; [ ehmry fpletz ];
|
2014-04-20 16:16:36 +01:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2010-02-09 07:28:32 +00:00
|
|
|
};
|
|
|
|
}
|