2021-01-21 09:00:13 -08:00
|
|
|
{ lib, stdenv, fetchurl, openssl, perl, which, dns-root-data }:
|
2011-11-01 15:33:40 -07:00
|
|
|
|
2013-05-26 22:57:08 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2017-01-04 08:43:05 -08:00
|
|
|
pname = "ldns";
|
2019-07-26 17:22:21 -07:00
|
|
|
version = "1.7.1";
|
2017-01-04 08:43:05 -08:00
|
|
|
|
2011-11-01 15:33:40 -07:00
|
|
|
src = fetchurl {
|
2019-08-15 05:41:18 -07:00
|
|
|
url = "https://www.nlnetlabs.nl/downloads/ldns/${pname}-${version}.tar.gz";
|
2019-07-26 17:22:21 -07:00
|
|
|
sha256 = "0ac242n7996fswq1a3nlh1bbbhrsdwsq4mx7xq8ffq6aplb4rj4a";
|
2011-11-01 15:33:40 -07:00
|
|
|
};
|
|
|
|
|
2017-12-09 01:59:08 -08:00
|
|
|
postPatch = ''
|
2015-09-16 21:20:29 -07:00
|
|
|
patchShebangs doc/doxyparse.pl
|
2011-11-01 15:33:40 -07:00
|
|
|
'';
|
|
|
|
|
2017-06-15 20:12:37 -07:00
|
|
|
outputs = [ "out" "dev" "man" "examples" ];
|
2017-01-04 08:43:05 -08:00
|
|
|
|
2015-09-16 21:20:29 -07:00
|
|
|
nativeBuildInputs = [ perl ];
|
|
|
|
buildInputs = [ openssl ];
|
2011-11-01 15:33:40 -07:00
|
|
|
|
2017-06-15 20:11:56 -07:00
|
|
|
configureFlags = [
|
|
|
|
"--with-ssl=${openssl.dev}"
|
|
|
|
"--with-trust-anchor=${dns-root-data}/root.key"
|
|
|
|
"--with-drill"
|
|
|
|
"--disable-gost"
|
2019-07-26 17:22:21 -07:00
|
|
|
"--with-examples"
|
2021-01-21 09:00:13 -08:00
|
|
|
] ++ lib.optionals (stdenv.hostPlatform != stdenv.buildPlatform) [
|
2018-02-25 11:42:23 -08:00
|
|
|
"ac_cv_func_malloc_0_nonnull=yes"
|
|
|
|
"ac_cv_func_realloc_0_nonnull=yes"
|
2017-06-15 20:11:56 -07:00
|
|
|
];
|
2011-11-01 15:33:40 -07:00
|
|
|
|
2018-08-08 11:37:03 -07:00
|
|
|
checkInputs = [ which ];
|
|
|
|
doCheck = false; # fails. missing some files
|
|
|
|
|
2016-11-14 07:35:34 -08:00
|
|
|
postInstall = ''
|
2019-07-26 17:22:21 -07: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 07:35:34 -08:00
|
|
|
moveToOutput "bin/ldns-config" "$dev"
|
|
|
|
'';
|
|
|
|
|
2021-01-21 09:00:13 -08:00
|
|
|
meta = with lib; {
|
2011-11-01 15:33:40 -07:00
|
|
|
description = "Library with the aim of simplifying DNS programming in C";
|
2015-08-03 02:37:15 -07:00
|
|
|
license = licenses.bsd3;
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "http://www.nlnetlabs.nl/projects/ldns/";
|
2018-12-10 14:43:24 -08:00
|
|
|
platforms = platforms.unix;
|
2019-07-26 19:10:17 -07:00
|
|
|
maintainers = with maintainers; [ dtzWill ];
|
2011-11-01 15:33:40 -07:00
|
|
|
};
|
|
|
|
}
|