2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, libpcap, openssl, libnetfilter_queue, libnfnetlink }:
|
2020-09-25 17:15:58 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "thc-ipv6";
|
2020-12-05 03:35:10 +00:00
|
|
|
version = "3.8";
|
2020-09-25 17:15:58 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "vanhauser-thc";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2020-12-05 03:35:10 +00:00
|
|
|
sha256 = "07kwika1zdq62s5p5z94xznm77dxjxdg8k0hrg7wygz50151nzmx";
|
2020-09-25 17:15:58 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
libpcap
|
|
|
|
openssl
|
|
|
|
libnetfilter_queue
|
|
|
|
libnfnetlink
|
|
|
|
];
|
|
|
|
|
|
|
|
makeFlags = [
|
|
|
|
"PREFIX=$(out)"
|
|
|
|
];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-09-25 17:15:58 +01:00
|
|
|
description = "IPv6 attack toolkit";
|
|
|
|
homepage = "https://github.com/vanhauser-thc/thc-ipv6";
|
|
|
|
maintainers = with maintainers; [ ajs124 ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
license = licenses.agpl3Only;
|
|
|
|
};
|
|
|
|
}
|