Updating unbound.
svn path=/nixpkgs/trunk/; revision=30174
This commit is contained in:
@@ -1,20 +1,22 @@
|
||||
{ stdenv, fetchurl, openssl }:
|
||||
{ stdenv, fetchurl, openssl, expat, libevent, ldns }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "unbound-1.4.1";
|
||||
name = "unbound-1.4.13";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://unbound.net/downloads/${name}.tar.gz";
|
||||
sha256 = "2573db422d7a856a3783b96698f2d5ca18a849d0bd6f0e36eb37a4f0a65b60e2";
|
||||
sha256 = "04r379gma1ghr9zjc1fmncpw8kka4f0mpcmrzidsp264aqkxriw3";
|
||||
};
|
||||
|
||||
buildInputs = [openssl];
|
||||
buildInputs = [openssl expat libevent ldns];
|
||||
|
||||
configureFlags = "--with-ssl=${openssl}";
|
||||
configureFlags = [ "--with-ssl=${openssl}" "--with-libexpat=${expat}"
|
||||
"--localstatedir=/var" ];
|
||||
|
||||
meta = {
|
||||
description = "Unbound, a validating, recursive, and caching DNS resolver.";
|
||||
license = "BSD";
|
||||
homepage = http://www.unbound.net;
|
||||
platforms = with stdenv.lib.platforms; linux;
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user