2024-04-21 15:54:59 +00:00
|
|
|
{ boost, cmake, fetchFromGitHub, gtest, libpcap, openssl, lib, stdenv }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "libtins";
|
2024-04-21 15:54:59 +00:00
|
|
|
version = "4.5";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "mfontanini";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2024-04-21 15:54:59 +00:00
|
|
|
sha256 = "sha256-zL4C2Cgs9Y3NebL8MPQBO5j8Bm6xhl8ZggQBPJLRn0o=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2024-01-13 08:15:51 +00:00
|
|
|
patches = [
|
2024-04-21 15:54:59 +00:00
|
|
|
# Required for gtest 1.13+, see also upstream report at:
|
|
|
|
# https://github.com/mfontanini/libtins/issues/529
|
|
|
|
./0001-force-cpp-14.patch
|
2024-01-13 08:15:51 +00:00
|
|
|
];
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
postPatch = ''
|
|
|
|
rm -rf googletest
|
2021-08-18 13:19:15 +00:00
|
|
|
cp -r ${gtest.src} googletest
|
2020-04-24 23:36:52 +00:00
|
|
|
chmod -R a+w googletest
|
|
|
|
'';
|
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake gtest ];
|
|
|
|
buildInputs = [
|
|
|
|
openssl
|
|
|
|
libpcap
|
|
|
|
boost
|
|
|
|
];
|
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--with-boost-libdir=${boost.out}/lib"
|
|
|
|
"--with-boost=${boost.dev}"
|
|
|
|
];
|
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
checkTarget = "tests test";
|
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "High-level, multiplatform C++ network packet sniffing and crafting library";
|
|
|
|
homepage = "https://libtins.github.io/";
|
|
|
|
changelog = "https://raw.githubusercontent.com/mfontanini/${pname}/v${version}/CHANGES.md";
|
2021-02-05 17:12:51 +00:00
|
|
|
license = lib.licenses.bsd2;
|
2020-04-24 23:36:52 +00:00
|
|
|
maintainers = with maintainers; [ fdns ];
|
2021-02-05 17:12:51 +00:00
|
|
|
platforms = lib.platforms.unix;
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|