mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
dnstwist: init at 20201228
This commit is contained in:
parent
7e1aee2aa4
commit
3121998f6b
2 changed files with 39 additions and 0 deletions
37
pkgs/tools/networking/dnstwist/default.nix
Normal file
37
pkgs/tools/networking/dnstwist/default.nix
Normal file
|
@ -0,0 +1,37 @@
|
|||
{ lib
|
||||
, fetchFromGitHub
|
||||
, python3
|
||||
}:
|
||||
|
||||
python3.pkgs.buildPythonApplication rec {
|
||||
pname = "dnstwist";
|
||||
version = "20201228";
|
||||
disabled = python3.pythonOlder "3.6";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "elceef";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "0bxshi1p0va2f449v6vsm8bav5caa3r3pyknj3zf4n5rvk6say70";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with python3.pkgs; [
|
||||
dnspython
|
||||
GeoIP
|
||||
ppdeep
|
||||
requests
|
||||
tld
|
||||
whois
|
||||
];
|
||||
|
||||
# Project has no tests
|
||||
doCheck = false;
|
||||
pythonImportsCheck = [ "dnstwist" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Domain name permutation engine for detecting homograph phishing attacks";
|
||||
homepage = "https://github.com/elceef/dnstwist";
|
||||
license = with licenses; [ gpl3Only ];
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
|
@ -30921,6 +30921,8 @@ in
|
|||
inherit (darwin) libresolv;
|
||||
};
|
||||
|
||||
dnstwist = callPackage ../tools/networking/dnstwist {};
|
||||
|
||||
dsniff = callPackage ../tools/networking/dsniff {};
|
||||
|
||||
wal-g = callPackage ../tools/backup/wal-g { };
|
||||
|
|
Loading…
Reference in a new issue