summary refs log tree commit diff
path: root/pkgs/development/libraries/ldns/default.nix
blob: 01aeeecc6f6ed4cd12d7e07e98db259f757f3253 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{stdenv, fetchurl, openssl, perl}:

stdenv.mkDerivation rec {
  name = "ldns-1.6.17";

  src = fetchurl {
    url = "http://www.nlnetlabs.nl/downloads/ldns/${name}.tar.gz";
    sha256 = "1kf8pkwhcssvgzhh6ha1pjjiziwvwmfaali7kaafh6118mcy124b";
  };

  patchPhase = ''
    sed -i 's,\$(srcdir)/doc/doxyparse.pl,perl $(srcdir)/doc/doxyparse.pl,' Makefile.in
  '';

  buildInputs = [ openssl perl ];

  configureFlags = [ "--with-ssl=${openssl}" "--with-drill" ];

  meta = {
    description = "Library with the aim of simplifying DNS programming in C";
    license = stdenv.lib.licenses.bsd3;
    homepage = "http://www.nlnetlabs.nl/projects/ldns/";
  };
}