nixpkgs/pkgs/tools/security/fierce/default.nix
2019-11-11 14:14:24 +01:00

24 lines
618 B
Nix

{ 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;
};
}