Merge pull request #57510 from rixed/junkie

junkie: init at 2.8.0
This commit is contained in:
Silvan Mosberger 2019-03-15 16:31:27 +01:00 committed by GitHub
commit b81e42ec79
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 43 additions and 0 deletions

View file

@ -3976,6 +3976,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";

View file

@ -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...
'';
};
}

View file

@ -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 { };