nixpkgs/pkgs/development/libraries/ldns/default.nix

51 lines
1.3 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, openssl, perl, which, dns-root-data }:
stdenv.mkDerivation rec {
pname = "ldns";
version = "1.7.1";
src = fetchurl {
url = "https://www.nlnetlabs.nl/downloads/ldns/${pname}-${version}.tar.gz";
sha256 = "0ac242n7996fswq1a3nlh1bbbhrsdwsq4mx7xq8ffq6aplb4rj4a";
};
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
];
2018-08-08 18:37:03 +00:00
checkInputs = [ which ];
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";
2015-08-03 09:37:15 +00:00
license = licenses.bsd3;
homepage = "http://www.nlnetlabs.nl/projects/ldns/";
platforms = platforms.unix;
2019-07-27 02:10:17 +00:00
maintainers = with maintainers; [ dtzWill ];
};
}