e7ec2969af
GitOrigin-RevId: 9b19f5e77dd906cb52dade0b7bd280339d2a1f3d
54 lines
1.4 KiB
Nix
54 lines
1.4 KiB
Nix
{ boost, cmake, fetchFromGitHub, fetchpatch, gtest, libpcap, openssl, lib, stdenv }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libtins";
|
|
version = "4.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mfontanini";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-mXbinXh/CO0SZZ71+K+FozbHCCoi12+AIa2o+P0QmUw=";
|
|
};
|
|
|
|
patches = [
|
|
# Pull gcc-13 fixes:
|
|
# https://github.com/mfontanini/libtins/pull/496
|
|
# TODO: remove when upgrade to the next version.
|
|
(fetchpatch {
|
|
name = "gcc-13.patch";
|
|
url = "https://github.com/mfontanini/libtins/commit/812be7966d445ec56e88eab512f8fd2d57152427.patch";
|
|
hash = "sha256-5RCFPe95r1CBrAocjTPR2SvUlgaGa1aBc8RazyxUj3M=";
|
|
})
|
|
];
|
|
|
|
postPatch = ''
|
|
rm -rf googletest
|
|
cp -r ${gtest.src} googletest
|
|
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";
|
|
|
|
meta = with lib; {
|
|
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";
|
|
license = lib.licenses.bsd2;
|
|
maintainers = with maintainers; [ fdns ];
|
|
platforms = lib.platforms.unix;
|
|
};
|
|
}
|