2019-07-27 01:22:21 +01:00
|
|
|
{ stdenv, fetchurl, openssl, perl, which, 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";
|
2019-07-27 01:22:21 +01:00
|
|
|
version = "1.7.1";
|
2017-01-04 16:43:05 +00:00
|
|
|
|
2011-11-01 22:33:40 +00:00
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "https://www.nlnetlabs.nl/downloads/ldns/${pname}-${version}.tar.gz";
|
2019-07-27 01:22:21 +01:00
|
|
|
sha256 = "0ac242n7996fswq1a3nlh1bbbhrsdwsq4mx7xq8ffq6aplb4rj4a";
|
2011-11-01 22:33:40 +00:00
|
|
|
};
|
|
|
|
|
2017-12-09 09:59:08 +00:00
|
|
|
postPatch = ''
|
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"
|
2019-07-27 01:22:21 +01:00
|
|
|
"--with-examples"
|
2018-02-25 19:42:23 +00:00
|
|
|
] ++ stdenv.lib.optionals (stdenv.hostPlatform != stdenv.buildPlatform) [
|
|
|
|
"ac_cv_func_malloc_0_nonnull=yes"
|
|
|
|
"ac_cv_func_realloc_0_nonnull=yes"
|
2017-06-16 04:11:56 +01:00
|
|
|
];
|
2011-11-01 22:33:40 +00:00
|
|
|
|
2018-08-08 19:37:03 +01:00
|
|
|
checkInputs = [ which ];
|
|
|
|
doCheck = false; # fails. missing some files
|
|
|
|
|
2016-11-14 15:35:34 +00:00
|
|
|
postInstall = ''
|
2019-07-27 01:22:21 +01:00
|
|
|
# Only 'drill' stays in $out
|
|
|
|
# the rest are examples:
|
|
|
|
moveToOutput "bin/ldns*" "$examples"
|
|
|
|
# with exception of ldns-config, which goes to $dev:
|
2016-11-14 15:35:34 +00:00
|
|
|
moveToOutput "bin/ldns-config" "$dev"
|
|
|
|
'';
|
|
|
|
|
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;
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://www.nlnetlabs.nl/projects/ldns/";
|
2018-12-10 22:43:24 +00:00
|
|
|
platforms = platforms.unix;
|
2019-07-27 03:10:17 +01:00
|
|
|
maintainers = with maintainers; [ dtzWill ];
|
2011-11-01 22:33:40 +00:00
|
|
|
};
|
|
|
|
}
|