2011-11-01 22:33:40 +00:00
|
|
|
{stdenv, fetchurl, openssl, perl}:
|
|
|
|
|
2013-05-27 06:57:08 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2014-10-07 20:16:36 +01:00
|
|
|
name = "ldns-1.6.17";
|
2013-05-27 06:57:08 +01:00
|
|
|
|
2011-11-01 22:33:40 +00:00
|
|
|
src = fetchurl {
|
2013-05-27 06:57:08 +01:00
|
|
|
url = "http://www.nlnetlabs.nl/downloads/ldns/${name}.tar.gz";
|
2014-10-07 20:16:36 +01:00
|
|
|
sha256 = "1kf8pkwhcssvgzhh6ha1pjjiziwvwmfaali7kaafh6118mcy124b";
|
2011-11-01 22:33:40 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
patchPhase = ''
|
|
|
|
sed -i 's,\$(srcdir)/doc/doxyparse.pl,perl $(srcdir)/doc/doxyparse.pl,' Makefile.in
|
|
|
|
'';
|
|
|
|
|
|
|
|
buildInputs = [ openssl perl ];
|
|
|
|
|
2013-05-27 06:57:08 +01:00
|
|
|
configureFlags = [ "--with-ssl=${openssl}" "--with-drill" ];
|
2011-11-01 22:33:40 +00:00
|
|
|
|
2015-08-03 10:37:15 +01:00
|
|
|
meta = with stdenv.lib; {
|
2011-11-01 22:33:40 +00:00
|
|
|
description = "Library with the aim of simplifying DNS programming in C";
|
2015-08-03 10:37:15 +01:00
|
|
|
license = licenses.bsd3;
|
2011-11-01 22:33:40 +00:00
|
|
|
homepage = "http://www.nlnetlabs.nl/projects/ldns/";
|
2015-08-03 10:37:15 +01:00
|
|
|
platforms = platforms.linux;
|
2015-08-03 10:37:40 +01:00
|
|
|
maintainers = with maintainers; [ jgeerds ];
|
2011-11-01 22:33:40 +00:00
|
|
|
};
|
|
|
|
}
|