mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
ldns: Update to 1.6.16 and enable drill.
Drill is a lightweight DNS lookup command using ldns, which we are going to use in Gajim, to avoid a dependency on bind. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
This commit is contained in:
parent
f966e5268f
commit
91d0ab7af1
@ -1,10 +1,11 @@
|
||||
{stdenv, fetchurl, openssl, perl}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "ldns-1.6.11";
|
||||
stdenv.mkDerivation rec {
|
||||
name = "ldns-1.6.16";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://www.nlnetlabs.nl/downloads/ldns/ldns-1.6.11.tar.gz";
|
||||
sha256 = "1248c9gkgfmjdmpp3lfd56vvln94ii54kbxa5iykxvcxivmbi4b8";
|
||||
url = "http://www.nlnetlabs.nl/downloads/ldns/${name}.tar.gz";
|
||||
sha256 = "15gn9m95r6sq2n55dw4r87p2aljb5lvy1w0y0br70wbr0p5zkci4";
|
||||
};
|
||||
|
||||
patchPhase = ''
|
||||
@ -13,7 +14,7 @@ stdenv.mkDerivation {
|
||||
|
||||
buildInputs = [ openssl perl ];
|
||||
|
||||
configureFlags = [ "--with-ssl=${openssl}" ];
|
||||
configureFlags = [ "--with-ssl=${openssl}" "--with-drill" ];
|
||||
|
||||
meta = {
|
||||
description = "Library with the aim of simplifying DNS programming in C";
|
||||
|
Loading…
Reference in New Issue
Block a user