mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 16:03:23 +00:00
Merge pull request #131092 from gfrascadorio/master
dnschef: init at 0.4
This commit is contained in:
commit
555b8dbc73
27
pkgs/tools/networking/dnschef/default.nix
Normal file
27
pkgs/tools/networking/dnschef/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user