mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-12 16:53:21 +00:00
4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
60 lines
1.7 KiB
Nix
60 lines
1.7 KiB
Nix
{ autoconf, automake, boost, cbor-diag, cddl, fetchFromGitHub, file, libctemplate, libmaxminddb
|
|
, libpcap, libtins, libtool, lzma, openssl, pkgconfig, lib, stdenv, tcpdump, wireshark-cli
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "compactor";
|
|
version = "1.1.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "dns-stats";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "0qykdnwi2q9sajkkc2sl5f00lvxjfymqjzqm0limsziykanh87c0";
|
|
};
|
|
|
|
# cbor-diag, cddl and wireshark-cli are only used for tests.
|
|
nativeBuildInputs = [ autoconf automake libtool pkgconfig cbor-diag cddl wireshark-cli ];
|
|
buildInputs = [
|
|
boost
|
|
libpcap
|
|
openssl
|
|
libtins
|
|
lzma
|
|
libctemplate
|
|
libmaxminddb
|
|
];
|
|
|
|
prePatch = ''
|
|
patchShebangs test-scripts/
|
|
'';
|
|
|
|
preConfigure = ''
|
|
${stdenv.shell} autogen.sh
|
|
substituteInPlace configure \
|
|
--replace "/usr/bin/file" "${file}/bin/file"
|
|
'';
|
|
CXXFLAGS = "-std=c++11";
|
|
configureFlags = [
|
|
"--with-boost-libdir=${boost.out}/lib"
|
|
"--with-boost=${boost.dev}"
|
|
];
|
|
enableParallelBuilding = true;
|
|
|
|
doCheck = true;
|
|
preCheck = ''
|
|
substituteInPlace test-scripts/check-live-pcap.sh \
|
|
--replace "/usr/sbin/tcpdump" "${tcpdump}/bin/tcpdump"
|
|
rm test-scripts/same-tshark-output.sh
|
|
''; # TODO: https://github.com/dns-stats/compactor/issues/49 (failing test)
|
|
|
|
meta = with lib; {
|
|
description = "Tools to capture DNS traffic and record it in C-DNS files";
|
|
homepage = "http://dns-stats.org/";
|
|
changelog = "https://github.com/dns-stats/${pname}/raw/${version}/ChangeLog.txt";
|
|
license = [ licenses.boost licenses.mpl20 licenses.openssl ];
|
|
maintainers = with maintainers; [ fdns ];
|
|
platforms = stdenv.lib.platforms.unix;
|
|
};
|
|
}
|