about summary refs log tree commit diff
path: root/pkgs/tools/networking
diff options
context:
space:
mode:
authorxrelkd <46590321+xrelkd@users.noreply.github.com>2020-04-15 14:11:17 +0800
committerxrelkd <46590321+xrelkd@users.noreply.github.com>2020-04-19 01:57:35 +0800
commit2b87ca0f9ce70c0aac6181288036fabbad7e543c (patch)
treeaad6b48e2273bf6c44a19a96b783f75a71478cc6 /pkgs/tools/networking
parent2d55f9c01a20b3a6db692273b3e36f53bd28cece (diff)
sniffglue: init at 0.10.1
Diffstat (limited to 'pkgs/tools/networking')
-rw-r--r--pkgs/tools/networking/sniffglue/default.nix27
1 files changed, 27 insertions, 0 deletions
diff --git a/pkgs/tools/networking/sniffglue/default.nix b/pkgs/tools/networking/sniffglue/default.nix
new file mode 100644
index 0000000000000..83f1e372aa585
--- /dev/null
+++ b/pkgs/tools/networking/sniffglue/default.nix
@@ -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;
+  };
+}