unbound 1.4.1
svn path=/nixpkgs/trunk/; revision=19870
This commit is contained in:
parent
97a6ecb879
commit
3d841892a7
20
pkgs/tools/networking/unbound/default.nix
Normal file
20
pkgs/tools/networking/unbound/default.nix
Normal 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/;
|
||||
};
|
||||
}
|
@ -1675,6 +1675,10 @@ let
|
||||
flex = flex2534;
|
||||
};
|
||||
|
||||
unbound = import ../tools/networking/unbound {
|
||||
inherit fetchurl stdenv openssl;
|
||||
};
|
||||
|
||||
units = import ../tools/misc/units {
|
||||
inherit fetchurl stdenv;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user