fierce: init at 1.3.0
Co-authored-by: Robin Gloster <mail@glob.in>
This commit is contained in:
parent
092791c8b1
commit
78d09f168a
23
pkgs/tools/security/fierce/default.nix
Normal file
23
pkgs/tools/security/fierce/default.nix
Normal file
@ -0,0 +1,23 @@
|
||||
{ stdenv, fetchFromGitHub, python3 }:
|
||||
|
||||
python3.pkgs.buildPythonApplication rec {
|
||||
pname = "fierce";
|
||||
version = "1.3.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "mschwager";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "0cdp9rpabazyfnks30rsf3qfdi40z1bkspxk4ds9bm82kpq33jxy";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ python3.pkgs.dns ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = "https://github.com/mschwager/fierce";
|
||||
description = "DNS reconnaissance tool for locating non-contiguous IP space";
|
||||
license = licenses.gpl3Plus;
|
||||
maintainers = with maintainers; [ c0bw3b globin ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
@ -2879,6 +2879,8 @@ in
|
||||
|
||||
fltrdr = callPackage ../tools/misc/fltrdr { stdenv = gcc8Stdenv; };
|
||||
|
||||
fierce = callPackage ../tools/security/fierce { };
|
||||
|
||||
figlet = callPackage ../tools/misc/figlet { };
|
||||
|
||||
file = callPackage ../tools/misc/file {
|
||||
|
Loading…
Reference in New Issue
Block a user