2017-06-16 03:11:56 +00:00
|
|
|
{stdenv, fetchurl, openssl, perl, dns-root-data}:
|
2011-11-01 22:33:40 +00:00
|
|
|
|
2013-05-27 05:57:08 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2017-01-04 16:43:05 +00:00
|
|
|
pname = "ldns";
|
|
|
|
version = "1.7.0";
|
|
|
|
|
|
|
|
name = "${pname}-${version}";
|
2013-05-27 05:57:08 +00:00
|
|
|
|
2011-11-01 22:33:40 +00:00
|
|
|
src = fetchurl {
|
2017-01-04 16:43:05 +00:00
|
|
|
url = "https://www.nlnetlabs.nl/downloads/ldns/${name}.tar.gz";
|
|
|
|
sha1 = "ceeeccf8a27e61a854762737f6ee02f44662c1b8";
|
2011-11-01 22:33:40 +00:00
|
|
|
};
|
|
|
|
|
2017-01-04 16:43:05 +00:00
|
|
|
patchPhase = ''
|
2015-09-17 04:20:29 +00:00
|
|
|
patchShebangs doc/doxyparse.pl
|
2011-11-01 22:33:40 +00:00
|
|
|
'';
|
|
|
|
|
2017-06-16 03:12:37 +00:00
|
|
|
outputs = [ "out" "dev" "man" "examples" ];
|
2017-01-04 16:43:05 +00:00
|
|
|
|
2015-09-17 04:20:29 +00:00
|
|
|
nativeBuildInputs = [ perl ];
|
|
|
|
buildInputs = [ openssl ];
|
2011-11-01 22:33:40 +00:00
|
|
|
|
2017-06-16 03:11:56 +00:00
|
|
|
configureFlags = [
|
|
|
|
"--with-ssl=${openssl.dev}"
|
|
|
|
"--with-trust-anchor=${dns-root-data}/root.key"
|
|
|
|
"--with-drill"
|
|
|
|
"--disable-gost"
|
|
|
|
];
|
2011-11-01 22:33:40 +00:00
|
|
|
|
2016-11-14 15:35:34 +00:00
|
|
|
postInstall = ''
|
|
|
|
moveToOutput "bin/ldns-config" "$dev"
|
2017-06-16 03:12:37 +00:00
|
|
|
|
|
|
|
pushd examples
|
|
|
|
configureFlagsArray+=( "--bindir=$examples/bin" )
|
|
|
|
configurePhase
|
|
|
|
make
|
|
|
|
make install
|
|
|
|
popd
|
2016-11-14 15:35:34 +00:00
|
|
|
'';
|
|
|
|
|
2015-08-03 09:37:15 +00: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 09:37:15 +00:00
|
|
|
license = licenses.bsd3;
|
2011-11-01 22:33:40 +00:00
|
|
|
homepage = "http://www.nlnetlabs.nl/projects/ldns/";
|
2015-08-03 09:37:15 +00:00
|
|
|
platforms = platforms.linux;
|
2015-08-03 09:37:40 +00:00
|
|
|
maintainers = with maintainers; [ jgeerds ];
|
2011-11-01 22:33:40 +00:00
|
|
|
};
|
|
|
|
}
|