ocamlPackages.hxd: 0.3.2 -> 0.3.3 (#364231)
[NixPkgs.git] / pkgs / by-name / th / thc-ipv6 / package.nix
blobc28e42efb7646d430950c486ef8de8a74aca46f1
2   lib,
3   stdenv,
4   fetchFromGitHub,
5   libpcap,
6   openssl,
7   libnetfilter_queue,
8   libnfnetlink,
9 }:
10 stdenv.mkDerivation rec {
11   pname = "thc-ipv6";
12   version = "3.8";
14   src = fetchFromGitHub {
15     owner = "vanhauser-thc";
16     repo = pname;
17     rev = "v${version}";
18     sha256 = "07kwika1zdq62s5p5z94xznm77dxjxdg8k0hrg7wygz50151nzmx";
19   };
21   buildInputs = [
22     libpcap
23     openssl
24     libnetfilter_queue
25     libnfnetlink
26   ];
28   makeFlags = [
29     "PREFIX=$(out)"
30   ];
32   meta = with lib; {
33     description = "IPv6 attack toolkit";
34     homepage = "https://github.com/vanhauser-thc/thc-ipv6";
35     maintainers = with maintainers; [ ajs124 ];
36     platforms = platforms.linux;
37     license = licenses.agpl3Only;
38   };