2011-11-02 02:33:40 +04:00
|
|
|
{stdenv, fetchurl, openssl, perl}:
|
|
|
|
|
2013-05-27 09:57:08 +04:00
|
|
|
stdenv.mkDerivation rec {
|
2014-10-07 23:16:36 +04:00
|
|
|
name = "ldns-1.6.17";
|
2013-05-27 09:57:08 +04:00
|
|
|
|
2011-11-02 02:33:40 +04:00
|
|
|
src = fetchurl {
|
2013-05-27 09:57:08 +04:00
|
|
|
url = "http://www.nlnetlabs.nl/downloads/ldns/${name}.tar.gz";
|
2014-10-07 23:16:36 +04:00
|
|
|
sha256 = "1kf8pkwhcssvgzhh6ha1pjjiziwvwmfaali7kaafh6118mcy124b";
|
2011-11-02 02:33:40 +04:00
|
|
|
};
|
|
|
|
|
2015-09-17 07:20:29 +03:00
|
|
|
patches = [ ./perl-5.22-compat.patch ];
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
patchShebangs doc/doxyparse.pl
|
2011-11-02 02:33:40 +04:00
|
|
|
'';
|
|
|
|
|
2015-09-17 07:20:29 +03:00
|
|
|
nativeBuildInputs = [ perl ];
|
|
|
|
buildInputs = [ openssl ];
|
2011-11-02 02:33:40 +04:00
|
|
|
|
2016-04-16 20:44:32 +03:00
|
|
|
configureFlags = [ "--with-ssl=${openssl.dev}" "--with-drill" ];
|
2011-11-02 02:33:40 +04:00
|
|
|
|
2015-08-03 12:37:15 +03:00
|
|
|
meta = with stdenv.lib; {
|
2011-11-02 02:33:40 +04:00
|
|
|
description = "Library with the aim of simplifying DNS programming in C";
|
2015-08-03 12:37:15 +03:00
|
|
|
license = licenses.bsd3;
|
2011-11-02 02:33:40 +04:00
|
|
|
homepage = "http://www.nlnetlabs.nl/projects/ldns/";
|
2015-08-03 12:37:15 +03:00
|
|
|
platforms = platforms.linux;
|
2015-08-03 12:37:40 +03:00
|
|
|
maintainers = with maintainers; [ jgeerds ];
|
2011-11-02 02:33:40 +04:00
|
|
|
};
|
|
|
|
}
|