1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/tools/networking/unbound/default.nix

40 lines
1 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, openssl, expat, libevent }:
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";
src = fetchurl {
url = "http://unbound.net/downloads/${name}.tar.gz";
2015-04-21 01:50:39 +01:00
sha256 = "1jly2apag4yg649w3flaq73wdrcfyxnhx5py9j73y7adxmswigbn";
};
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 ];
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
];
2015-04-21 01:50:39 +01:00
installFlags = [ "configfile=\${out}/etc/unbound/unbound.conf" ];
2015-10-05 09:53:30 +01:00
# get rid of runtime dependency
postInstall = ''
substituteInPlace "$lib/lib/libunbound.la" \
--replace '-L${openssl.dev}/lib' ""
'';
meta = with stdenv.lib; {
description = "Validating, recursive, and caching DNS resolver";
2015-10-05 09:53:30 +01:00
license = licenses.bsd3;
homepage = http://www.unbound.net;
2015-10-05 09:53:30 +01:00
maintainers = [ maintainers.emery ];
platforms = platforms.unix;
};
}