dnschef: init at 0.4

This commit is contained in:
gfrascadorio 2021-07-21 21:48:45 -06:00
parent 000df55068
commit 9c3db28792
2 changed files with 29 additions and 0 deletions

View file

@ -0,0 +1,27 @@
{ buildPythonApplication, fetchFromGitHub, dnslib, lib }:
buildPythonApplication rec {
pname = "dnschef";
version = "0.4";
src = fetchFromGitHub {
owner = "iphelix";
repo = "dnschef";
rev = "a395411ae1f5c262d0b80d06a45a445f696f3243";
sha256 = "0ll3hw6w5zhzyqc2p3c9443gcp12sx6ddybg5rjpl01dh3svrk1q";
};
format = "other";
installPhase = ''
install -D ./dnschef.py $out/bin/dnschef
'';
propagatedBuildInputs = [ dnslib ];
meta = with lib; {
homepage = "https://github.com/iphelix/dnschef";
description = "Highly configurable DNS proxy for penetration testers and malware analysts";
license = licenses.bsd3;
maintainers = [ maintainers.gfrascadorio ];
};
}

View file

@ -2559,6 +2559,8 @@ in
dgen-sdl = callPackage ../misc/emulators/dgen-sdl { };
dnschef = python3Packages.callPackage ../tools/networking/dnschef { };
doitlive = callPackage ../tools/misc/doitlive { };
dokuwiki = callPackage ../servers/web-apps/dokuwiki { };