uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
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 ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue