mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-29 09:04:17 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
59 lines
960 B
Nix
59 lines
960 B
Nix
{ lib
|
|
, stdenv
|
|
, autoconf
|
|
, automake
|
|
, fetchFromGitHub
|
|
, libpcap
|
|
, ncurses
|
|
, openssl
|
|
, pcre
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "sngrep";
|
|
version = "1.8.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "irontec";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-nvuT//FWJAa6DzmjBsBW9s2p1M+6Zs4cVmpK4dVemnE=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoconf
|
|
automake
|
|
];
|
|
|
|
buildInputs = [
|
|
libpcap
|
|
ncurses
|
|
ncurses
|
|
openssl
|
|
pcre
|
|
];
|
|
|
|
configureFlags = [
|
|
"--with-pcre"
|
|
"--enable-unicode"
|
|
"--enable-ipv6"
|
|
"--enable-eep"
|
|
"--with-openssl"
|
|
];
|
|
|
|
preConfigure = ''
|
|
./bootstrap.sh
|
|
'';
|
|
|
|
doCheck = true;
|
|
|
|
meta = with lib; {
|
|
description = "Tool for displaying SIP calls message flows from terminal";
|
|
mainProgram = "sngrep";
|
|
homepage = "https://github.com/irontec/sngrep";
|
|
license = licenses.gpl3Plus;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ jorise ];
|
|
};
|
|
}
|