nixpkgs-suyu/pkgs/tools/networking/unbound/default.nix

43 lines
1.2 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, openssl, expat, libevent }:
stdenv.mkDerivation rec {
2014-12-23 06:49:51 +01:00
name = "unbound-${version}";
2016-03-06 13:11:40 +01:00
version = "1.5.8";
src = fetchurl {
url = "http://unbound.net/downloads/${name}.tar.gz";
2016-03-06 13:11:40 +01:00
sha256 = "33567a20f73e288f8daa4ec021fbb30fe1824b346b34f12677ad77899ecd09be";
};
2014-12-23 06:49:51 +01:00
2015-10-05 10:53:30 +02:00
outputs = [ "out" "lib" "man" ]; # "dev" would only split ~20 kB
2015-04-21 02:50:39 +02:00
buildInputs = [ openssl expat libevent ];
2014-12-23 06:49:51 +01:00
configureFlags = [
"--with-ssl=${openssl.dev}"
2014-12-23 06:49:51 +01:00
"--with-libexpat=${expat}"
"--with-libevent=${libevent.dev}"
2014-12-23 06:49:51 +01:00
"--localstatedir=/var"
2015-04-21 02:50:39 +02:00
"--sysconfdir=/etc"
2016-03-06 13:50:41 +01:00
"--sbindir=\${out}/bin"
"--enable-pie"
"--enable-relro-now"
2014-12-23 06:49:51 +01:00
];
2015-04-21 02:50:39 +02:00
installFlags = [ "configfile=\${out}/etc/unbound/unbound.conf" ];
# get rid of runtime dependencies on $dev outputs
2015-10-15 13:57:38 +02: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 10:53:30 +02:00
meta = with stdenv.lib; {
description = "Validating, recursive, and caching DNS resolver";
2015-10-05 10:53:30 +02:00
license = licenses.bsd3;
homepage = http://www.unbound.net;
2016-02-08 02:20:00 +01:00
maintainers = with maintainers; [ ehmry fpletz ];
platforms = stdenv.lib.platforms.unix;
};
}