unbound 1.4.1

svn path=/nixpkgs/trunk/; revision=19870
This commit is contained in:
Rob Vermaas 2010-02-09 07:28:32 +00:00
parent 97a6ecb879
commit 3d841892a7
2 changed files with 24 additions and 0 deletions

View file

@ -0,0 +1,20 @@
{ stdenv, fetchurl, openssl }:
stdenv.mkDerivation rec {
name = "unbound-1.4.1";
src = fetchurl {
url = "http://unbound.net/downloads/${name}.tar.gz";
sha256 = "2573db422d7a856a3783b96698f2d5ca18a849d0bd6f0e36eb37a4f0a65b60e2";
};
buildInputs = [openssl];
configureFlags = "--with-ssl=${openssl}";
meta = {
description = "Unbound, a validating, recursive, and caching DNS resolver.";
license = "BSD";
homepage = http://www.gnu.org/software/wget/;
};
}

View file

@ -1675,6 +1675,10 @@ let
flex = flex2534;
};
unbound = import ../tools/networking/unbound {
inherit fetchurl stdenv openssl;
};
units = import ../tools/misc/units {
inherit fetchurl stdenv;
};