nixpkgs/pkgs/applications/networking/sniffers/sngrep/default.nix
2021-08-18 00:49:01 +00:00

39 lines
852 B
Nix

{ lib, stdenv, autoconf, automake, fetchFromGitHub, libpcap, ncurses, openssl, pcre }:
stdenv.mkDerivation rec {
pname = "sngrep";
version = "1.4.9";
src = fetchFromGitHub {
owner = "irontec";
repo = pname;
rev = "v${version}";
sha256 = "sha256-92wPRDFSoIOYFv3XKdsuYH8j3D8kXyg++q6VpIIMGDg=";
};
buildInputs = [
libpcap ncurses pcre openssl ncurses
];
nativeBuildInputs = [
autoconf automake
];
configureFlags = [
"--with-pcre"
"--enable-unicode"
"--enable-ipv6"
"--enable-eep"
];
preConfigure = "./bootstrap.sh";
meta = with lib; {
description = "A tool for displaying SIP calls message flows from terminal";
homepage = "https://github.com/irontec/sngrep";
license = licenses.gpl3;
platforms = platforms.unix;
maintainers = with maintainers; [ jorise ];
};
}