aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/applications/networking/sniffers/sngrep/default.nix
blob: 9dda62b3badbf6764dedd1035ef020029faa658f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{ stdenv, autoconf, automake, fetchFromGitHub, libpcap, ncurses, openssl, pcre }:

stdenv.mkDerivation rec {
  pname = "sngrep";
  version = "1.4.8";

  src = fetchFromGitHub {
    owner = "irontec";
    repo = pname;
    rev = "v${version}";
    sha256 = "0lnwsw9x4y4lr1yh749y24f71p5zsghwh5lp28zqfanw025mipf2";
  };

  buildInputs = [
    libpcap ncurses pcre openssl ncurses
  ];

  nativeBuildInputs = [
    autoconf automake
  ];

  configureFlags = [
    "--with-pcre"
    "--enable-unicode"
    "--enable-ipv6"
    "--enable-eep"
  ];

  preConfigure = "./bootstrap.sh";

  meta = with stdenv.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 ];
  };
}