nixpkgs/pkgs/by-name/ld/ldns/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

67 lines
1.4 KiB
Nix
Raw Normal View History

{
lib,
stdenv,
fetchurl,
openssl,
perl,
which,
dns-root-data,
}:
stdenv.mkDerivation rec {
pname = "ldns";
2024-07-20 12:20:40 +00:00
version = "1.8.4";
src = fetchurl {
url = "https://www.nlnetlabs.nl/downloads/ldns/${pname}-${version}.tar.gz";
2024-07-20 12:20:40 +00:00
sha256 = "sha256-g4uQdZS6r/HNdn6VRmp3RZmK5kvHS+A43Mxi4t4uQkc=";
};
postPatch = ''
2015-09-17 04:20:29 +00:00
patchShebangs doc/doxyparse.pl
'';
2017-06-16 03:12:37 +00:00
outputs = [
"out"
"dev"
"man"
"examples"
];
2015-09-17 04:20:29 +00:00
nativeBuildInputs = [ perl ];
buildInputs = [ openssl ];
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"
"--with-examples"
]
++ lib.optionals (stdenv.hostPlatform != stdenv.buildPlatform) [
2018-02-25 19:42:23 +00:00
"ac_cv_func_malloc_0_nonnull=yes"
"ac_cv_func_realloc_0_nonnull=yes"
2017-06-16 03:11:56 +00:00
];
nativeCheckInputs = [ which ];
2018-08-08 18:37:03 +00:00
doCheck = false; # fails. missing some files
2016-11-14 15:35:34 +00:00
postInstall = ''
# 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"
'';
meta = with lib; {
description = "Library with the aim of simplifying DNS programming in C";
homepage = "http://www.nlnetlabs.nl/projects/ldns/";
license = licenses.bsd3;
2019-07-27 02:10:17 +00:00
maintainers = with maintainers; [ dtzWill ];
mainProgram = "drill";
platforms = platforms.unix;
};
}