summary refs log blame commit diff
path: root/pkgs/tools/security/fierce/default.nix
blob: 5d12a000815869f5cfb312363493c34c6a7ce828 (plain) (tree)
1
2
3
4
5
6
7
8
9
10



                                         
                    




                         
                                                                    







                                                                                 
                                               


                              
{ stdenv, fetchFromGitHub, python3 }:

python3.pkgs.buildPythonApplication rec {
  pname = "fierce";
  version = "1.4.0";

  src = fetchFromGitHub {
    owner = "mschwager";
    repo = pname;
    rev = version;
    sha256 = "11yaz8ap9swx95j3wpqh0b6jhw6spqgfnsyn1liw9zqi4jwgiax7";
  };

  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 ];
    platforms = platforms.all;
  };
}