Skip to content

Commit

Permalink
thc-ipv6: init at 3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
ajs124 committed Sep 25, 2020
1 parent 1d60af7 commit e81c9b7
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 0 deletions.
31 changes: 31 additions & 0 deletions pkgs/tools/security/thc-ipv6/default.nix
@@ -0,0 +1,31 @@
{ stdenv, fetchFromGitHub, libpcap, openssl, libnetfilter_queue, libnfnetlink }:
stdenv.mkDerivation rec {
pname = "thc-ipv6";
version = "3.6";

src = fetchFromGitHub {
owner = "vanhauser-thc";
repo = pname;
rev = "v${version}";
sha256 = "1xjg30z0wzm3xvccv9cgh000i1m79p3m8f0b3s741k0mzyrk8lln";
};

buildInputs = [
libpcap
openssl
libnetfilter_queue
libnfnetlink
];

makeFlags = [
"PREFIX=$(out)"
];

meta = with stdenv.lib; {
description = "IPv6 attack toolkit";
homepage = "https://github.com/vanhauser-thc/thc-ipv6";
maintainers = with maintainers; [ ajs124 ];
platforms = platforms.linux;
license = licenses.agpl3Only;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -7329,6 +7329,8 @@ in

thc-hydra = callPackage ../tools/security/thc-hydra { };

thc-ipv6 = callPackage ../tools/security/thc-ipv6 { };

theharvester = callPackage ../tools/security/theharvester { };

inherit (nodePackages) thelounge;
Expand Down

0 comments on commit e81c9b7

Please sign in to comment.