2017-06-16 04:11:56 +01:00
|
|
|
{stdenv, fetchurl, openssl, perl, dns-root-data}:
|
2011-11-01 22:33:40 +00:00
|
|
|
|
2013-05-27 06:57:08 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2017-01-04 16:43:05 +00:00
|
|
|
pname = "ldns";
|
|
|
|
version = "1.7.0";
|
|
|
|
|
|
|
|
name = "${pname}-${version}";
|
2013-05-27 06:57:08 +01: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 05:20:29 +01:00
|
|
|
patchShebangs doc/doxyparse.pl
|
2011-11-01 22:33:40 +00:00
|
|
|
'';
|
|
|
|
|
2017-06-16 04:12:37 +01:00
|
|
|
outputs = [ "out" "dev" "man" "examples" ];
|
2017-01-04 16:43:05 +00:00
|
|
|
|
2015-09-17 05:20:29 +01:00
|
|
|
nativeBuildInputs = [ perl ];
|
|
|
|
buildInputs = [ openssl ];
|
2011-11-01 22:33:40 +00:00
|
|
|
|
2017-06-16 04:11:56 +01: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 04:12:37 +01:00
|
|
|
|
|
|
|
pushd examples
|
|
|
|
configureFlagsArray+=( "--bindir=$examples/bin" )
|
|
|
|
configurePhase
|
|
|
|
make
|
|
|
|
make install
|
|
|
|
popd
|
2017-08-13 21:43:41 +01:00
|
|
|
|
|
|
|
sed -i "$out/lib/libldns.la" -e "s,-L${openssl.dev},-L${openssl.out},g"
|
2016-11-14 15:35:34 +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;
|
2017-08-01 21:03:30 +01: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
|
|
|
};
|
|
|
|
}
|