2019-05-26 16:11:51 +01:00
|
|
|
{ autoconf, automake, boost, cbor-diag, cddl, fetchFromGitHub, file, libctemplate, libmaxminddb
|
2021-01-19 06:50:56 +00:00
|
|
|
, libpcap, libtins, libtool, lzma, openssl, pkg-config, lib, stdenv, tcpdump, wireshark-cli
|
2019-05-26 16:11:51 +01:00
|
|
|
}:
|
2018-03-22 23:48:53 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-05-26 16:11:51 +01:00
|
|
|
pname = "compactor";
|
2020-12-10 13:55:04 +00:00
|
|
|
version = "1.1.0";
|
2018-03-22 23:48:53 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "dns-stats";
|
2019-05-26 16:11:51 +01:00
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2020-12-10 13:55:04 +00:00
|
|
|
sha256 = "0qykdnwi2q9sajkkc2sl5f00lvxjfymqjzqm0limsziykanh87c0";
|
2018-03-22 23:48:53 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
# cbor-diag, cddl and wireshark-cli are only used for tests.
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ autoconf automake libtool pkg-config cbor-diag cddl wireshark-cli ];
|
2018-03-22 23:48:53 +00:00
|
|
|
buildInputs = [
|
|
|
|
boost
|
|
|
|
libpcap
|
|
|
|
openssl
|
|
|
|
libtins
|
|
|
|
lzma
|
2019-05-26 16:11:51 +01:00
|
|
|
libctemplate
|
|
|
|
libmaxminddb
|
2018-03-22 23:48:53 +00:00
|
|
|
];
|
|
|
|
|
2019-05-26 16:11:51 +01:00
|
|
|
prePatch = ''
|
2018-03-22 23:48:53 +00:00
|
|
|
patchShebangs test-scripts/
|
|
|
|
'';
|
|
|
|
|
|
|
|
preConfigure = ''
|
2019-05-26 16:11:51 +01:00
|
|
|
${stdenv.shell} autogen.sh
|
2018-03-22 23:48:53 +00:00
|
|
|
substituteInPlace configure \
|
|
|
|
--replace "/usr/bin/file" "${file}/bin/file"
|
|
|
|
'';
|
|
|
|
CXXFLAGS = "-std=c++11";
|
|
|
|
configureFlags = [
|
|
|
|
"--with-boost-libdir=${boost.out}/lib"
|
|
|
|
"--with-boost=${boost.dev}"
|
|
|
|
];
|
2019-05-26 16:11:51 +01:00
|
|
|
enableParallelBuilding = true;
|
2018-03-22 23:48:53 +00:00
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
preCheck = ''
|
|
|
|
substituteInPlace test-scripts/check-live-pcap.sh \
|
|
|
|
--replace "/usr/sbin/tcpdump" "${tcpdump}/bin/tcpdump"
|
2019-05-26 16:11:51 +01:00
|
|
|
rm test-scripts/same-tshark-output.sh
|
|
|
|
''; # TODO: https://github.com/dns-stats/compactor/issues/49 (failing test)
|
2018-03-22 23:48:53 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-03-22 23:48:53 +00:00
|
|
|
description = "Tools to capture DNS traffic and record it in C-DNS files";
|
2019-05-26 16:11:51 +01:00
|
|
|
homepage = "http://dns-stats.org/";
|
|
|
|
changelog = "https://github.com/dns-stats/${pname}/raw/${version}/ChangeLog.txt";
|
2018-03-22 23:48:53 +00:00
|
|
|
license = [ licenses.boost licenses.mpl20 licenses.openssl ];
|
|
|
|
maintainers = with maintainers; [ fdns ];
|
2021-01-15 13:21:58 +00:00
|
|
|
platforms = lib.platforms.unix;
|
2018-03-22 23:48:53 +00:00
|
|
|
};
|
|
|
|
}
|