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.

64 lines
1.1 KiB
Nix
Raw Normal View History

2021-09-20 11:42:55 +00:00
{ lib
, stdenv
, autoconf
, automake
, fetchFromGitHub
2023-08-19 19:04:27 +00:00
, fetchpatch
2021-09-20 11:42:55 +00:00
, libpcap
, ncurses
, openssl
, pcre
}:
stdenv.mkDerivation rec {
pname = "sngrep";
2023-04-09 23:49:27 +00:00
version = "1.7.0";
src = fetchFromGitHub {
owner = "irontec";
repo = pname;
rev = "v${version}";
2023-04-09 23:49:27 +00:00
sha256 = "sha256-gFba2wOU4GwpOZTo5A2QpBgnC6OgDJEeyaPGHbA+7tA=";
};
2023-08-19 19:04:27 +00:00
patches = [
(fetchpatch {
name = "CVE-2023-36192.patch";
url = "https://github.com/irontec/sngrep/commit/ad1daf15c8387bfbb48097c25197bf330d2d98fc.patch";
hash = "sha256-g8fxvxi3d7jmZEKTbxqw29hJbm/ShsKKxstsOUGxTug=";
})
];
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 ];
};
}