nixpkgs/pkgs/applications/networking/sniffers/sngrep/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

55 lines
894 B
Nix
Raw Normal View History

2021-09-20 11:42:55 +00:00
{ lib
, stdenv
, autoconf
, automake
, fetchFromGitHub
, libpcap
, ncurses
, openssl
, pcre
}:
stdenv.mkDerivation rec {
pname = "sngrep";
2022-06-24 18:39:31 +00:00
version = "1.5.0";
src = fetchFromGitHub {
owner = "irontec";
repo = pname;
rev = "v${version}";
2022-06-24 18:39:31 +00:00
sha256 = "sha256-GxC9+O72GHE8Tc6FReO7EdpZTSaqn9mBpZCYaKybJls=";
};
2021-09-20 11:42:55 +00:00
nativeBuildInputs = [
autoconf
automake
];
2021-09-20 11:42:55 +00:00
buildInputs = [
libpcap
ncurses
ncurses
openssl
pcre
];
configureFlags = [
"--with-pcre"
"--enable-unicode"
"--enable-ipv6"
"--enable-eep"
];
2021-09-20 11:42:55 +00:00
preConfigure = ''
./bootstrap.sh
'';
meta = with lib; {
description = "A tool for displaying SIP calls message flows from terminal";
homepage = "https://github.com/irontec/sngrep";
2021-09-20 11:42:55 +00:00
license = licenses.gpl3Plus;
platforms = platforms.unix;
maintainers = with maintainers; [ jorise ];
};
}