mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
sniffglue: init at 0.10.1
This commit is contained in:
parent
2d55f9c01a
commit
2b87ca0f9c
27
pkgs/tools/networking/sniffglue/default.nix
Normal file
27
pkgs/tools/networking/sniffglue/default.nix
Normal file
@ -0,0 +1,27 @@
|
||||
{ lib, fetchFromGitHub, rustPlatform, libpcap, libseccomp, pkgconfig }:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "sniffglue";
|
||||
version = "0.10.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "kpcyrd";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "0vyxlqwh90shihp80fk0plnkjix9i37n2dnypzyz6nx44xd5737s";
|
||||
};
|
||||
|
||||
cargoSha256 = "162p3a696k281cygqpl6gg4makwk2v0g2jnf1gd108dnz4jya11l";
|
||||
|
||||
nativeBuildInputs = [ pkgconfig ];
|
||||
|
||||
buildInputs = [ libpcap libseccomp ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Secure multithreaded packet sniffer";
|
||||
homepage = "https://github.com/kpcyrd/sniffglue";
|
||||
license = licenses.gpl3;
|
||||
maintainers = with maintainers; [ xrelkd ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
@ -6619,6 +6619,8 @@ in
|
||||
libpng = libpng12;
|
||||
};
|
||||
|
||||
sniffglue = callPackage ../tools/networking/sniffglue { };
|
||||
|
||||
snort = callPackage ../applications/networking/ids/snort { };
|
||||
|
||||
soapui = callPackage ../applications/networking/soapui { };
|
||||
|
Loading…
Reference in New Issue
Block a user