nixpkgs/pkgs/tools/security/thc-ipv6/default.nix

32 lines
701 B
Nix
Raw Normal View History

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