2021-09-20 12:42:55 +01:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, autoconf
|
|
|
|
, automake
|
|
|
|
, fetchFromGitHub
|
2021-11-18 22:49:02 +00:00
|
|
|
, fetchpatch
|
2021-09-20 12:42:55 +01:00
|
|
|
, libpcap
|
|
|
|
, ncurses
|
|
|
|
, openssl
|
|
|
|
, pcre
|
|
|
|
}:
|
2019-06-12 20:24:48 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "sngrep";
|
2021-08-18 01:49:01 +01:00
|
|
|
version = "1.4.9";
|
2019-06-12 20:24:48 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "irontec";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2021-08-18 01:49:01 +01:00
|
|
|
sha256 = "sha256-92wPRDFSoIOYFv3XKdsuYH8j3D8kXyg++q6VpIIMGDg=";
|
2019-06-12 20:24:48 +01:00
|
|
|
};
|
|
|
|
|
2021-11-18 22:49:02 +00:00
|
|
|
patches = [
|
|
|
|
# Pull fix pending upstream inclusion for ncurses-6.3 support:
|
|
|
|
# https://github.com/irontec/sngrep/pull/382
|
|
|
|
(fetchpatch {
|
|
|
|
name = "ncurses-6.3.patch";
|
|
|
|
url = "https://github.com/irontec/sngrep/commit/d09e1c323dbd7fc899e8985899baec568f045601.patch";
|
|
|
|
sha256 = "sha256-nY5i3WQh/oKboEAh4wvxF5Imf2BHYEKdFj+WF1M3SSA=";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2021-09-20 12:42:55 +01:00
|
|
|
nativeBuildInputs = [
|
|
|
|
autoconf
|
|
|
|
automake
|
2019-06-12 20:24:48 +01:00
|
|
|
];
|
|
|
|
|
2021-09-20 12:42:55 +01:00
|
|
|
buildInputs = [
|
|
|
|
libpcap
|
|
|
|
ncurses
|
|
|
|
ncurses
|
|
|
|
openssl
|
|
|
|
pcre
|
2019-06-12 20:24:48 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--with-pcre"
|
|
|
|
"--enable-unicode"
|
|
|
|
"--enable-ipv6"
|
|
|
|
"--enable-eep"
|
|
|
|
];
|
|
|
|
|
2021-09-20 12:42:55 +01:00
|
|
|
preConfigure = ''
|
|
|
|
./bootstrap.sh
|
|
|
|
'';
|
2019-06-12 20:24:48 +01:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2019-06-12 20:24:48 +01:00
|
|
|
description = "A tool for displaying SIP calls message flows from terminal";
|
|
|
|
homepage = "https://github.com/irontec/sngrep";
|
2021-09-20 12:42:55 +01:00
|
|
|
license = licenses.gpl3Plus;
|
2019-06-12 20:24:48 +01:00
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = with maintainers; [ jorise ];
|
|
|
|
};
|
|
|
|
}
|