mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-17 11:13:30 +00:00
55 lines
894 B
Nix
55 lines
894 B
Nix
{ lib
|
|
, stdenv
|
|
, autoconf
|
|
, automake
|
|
, fetchFromGitHub
|
|
, libpcap
|
|
, ncurses
|
|
, openssl
|
|
, pcre
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "sngrep";
|
|
version = "1.5.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "irontec";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-GxC9+O72GHE8Tc6FReO7EdpZTSaqn9mBpZCYaKybJls=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoconf
|
|
automake
|
|
];
|
|
|
|
buildInputs = [
|
|
libpcap
|
|
ncurses
|
|
ncurses
|
|
openssl
|
|
pcre
|
|
];
|
|
|
|
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.gpl3Plus;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ jorise ];
|
|
};
|
|
}
|