From 4a1ee9fc55542015dbc9c001ee9e7abe5b72866b Mon Sep 17 00:00:00 2001 From: Cedric Cellier Date: Fri, 15 Mar 2019 07:54:43 +0100 Subject: [PATCH 1/2] maintainers: add rixed --- maintainers/maintainer-list.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index 31af9b5f788..d2baa070ab5 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -3971,6 +3971,11 @@ github = "rittelle"; name = "Lennart Rittel"; }; + rixed = { + email = "rixed-github@happyleptic.org"; + github = "rixed"; + name = "Cedric Cellier"; + }; rkoe = { email = "rk@simple-is-better.org"; github = "rkoe"; From 1881bd83ccd6d0d4dcfab0228744be5de8d565a2 Mon Sep 17 00:00:00 2001 From: Cedric Cellier Date: Fri, 21 Dec 2018 11:37:20 +0100 Subject: [PATCH 2/2] junkie: init at 2.8.0 --- pkgs/tools/networking/junkie/default.nix | 36 ++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 38 insertions(+) create mode 100644 pkgs/tools/networking/junkie/default.nix diff --git a/pkgs/tools/networking/junkie/default.nix b/pkgs/tools/networking/junkie/default.nix new file mode 100644 index 00000000000..68b1b158524 --- /dev/null +++ b/pkgs/tools/networking/junkie/default.nix @@ -0,0 +1,36 @@ +{ stdenv, fetchFromGitHub, pkgconfig, libpcap, guile, openssl }: + +stdenv.mkDerivation rec { + pname = "junkie"; + version = "2.8.0"; + + src = fetchFromGitHub { + owner = "rixed"; + repo = "junkie"; + rev = "v${version}"; + sha256 = "c9b57bd6e06d4f90e6a88b775f33fa00f66313ba0f663df70198eddf1d4be298"; + }; + buildInputs = [ libpcap guile openssl ]; + nativeBuildInputs = [ pkgconfig ]; + configureFlags = [ + "GUILELIBDIR=\${out}/share/guile/site" + "GUILECACHEDIR=\${out}/lib/guile/ccache" + ]; + + meta = { + description = "Deep packet inspection swiss-army knife"; + homepage = "https://github.com/rixed/junkie"; + license = stdenv.lib.licenses.agpl3Plus; + maintainers = [ stdenv.lib.maintainers.rixed ]; + platforms = stdenv.lib.platforms.unix; + longDescription = '' + Junkie is a network sniffer like Tcpdump or Wireshark, but designed to + be easy to program and extend. + + It comes with several command line tools to demonstrate this: + - a packet dumper; + - a nettop tool; + - a tool listing TLS certificates... + ''; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 665b1ce7766..172b0608b52 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -3610,6 +3610,8 @@ in jnettop = callPackage ../tools/networking/jnettop { }; + junkie = callPackage ../tools/networking/junkie { }; + go-jira = callPackage ../applications/misc/go-jira { }; john = callPackage ../tools/security/john { };