nixpkgs/pkgs/tools/networking/unbound/default.nix
Bjørn Forsman 083d0890f5 More description fixes
* Remove package name
* Start with upper case letter
* Remove trailing period

Also reword some descriptions and move some long descriptions to
longDescription.

I'm not touching generated packages.
2013-10-06 12:01:38 +02:00

23 lines
609 B
Nix

{ stdenv, fetchurl, openssl, expat, libevent, ldns }:
stdenv.mkDerivation rec {
name = "unbound-1.4.13";
src = fetchurl {
url = "http://unbound.net/downloads/${name}.tar.gz";
sha256 = "04r379gma1ghr9zjc1fmncpw8kka4f0mpcmrzidsp264aqkxriw3";
};
buildInputs = [openssl expat libevent ldns];
configureFlags = [ "--with-ssl=${openssl}" "--with-libexpat=${expat}"
"--localstatedir=/var" ];
meta = {
description = "Validating, recursive, and caching DNS resolver";
license = "BSD";
homepage = http://www.unbound.net;
platforms = with stdenv.lib.platforms; linux;
};
}