summary refs log blame commit diff
path: root/pkgs/tools/security/haka/default.nix
blob: 6c5247a47bb573dd86e1db32565d05bb0169f9e1 (plain) (tree)
1
2
3
4
5
6
7
8
9








                                                                                         
                                                                                                              




                                                                                                                

                                    











                                                                               
                                                                                                                            





                                                         
{ stdenv, fetchurl, cmake, swig, wireshark, check, rsync, libpcap, gawk, libedit, pcre }:

let version = "0.3.0"; in

stdenv.mkDerivation rec {
  name = "haka-${version}";

  src = fetchurl {
    name = "haka_${version}_source.tar.gz";
    url = "https://github.com/haka-security/haka/releases/download/v${version}/haka_${version}_source.tar.gz";

    # https://github.com/haka-security/haka/releases/download/v${version}/haka_${version}_source.tar.gz.sha1.txt
    sha1 = "87625ed32841cc0b3aa92aa49397ce71ce434bc2";
  };

  NIX_CFLAGS_COMPILE = "-Wno-error";

  preConfigure = ''
    sed -i 's,/etc,'$out'/etc,' src/haka/haka.c
    sed -i 's,/etc,'$out'/etc,' src/haka/CMakeLists.txt
    sed -i 's,/opt/haka/etc,$out/opt/haka/etc,' src/haka/haka.1
    sed -i 's,/etc,'$out'/etc,' doc/user/tool_suite_haka.rst
  '';

  buildInputs = [ cmake swig wireshark check rsync libpcap gawk libedit pcre ];

  enableParallelBuilding = true;

  meta = {
    description = "A collection of tools that allows capturing TCP/IP packets and filtering them based on Lua policy files";
    homepage = http://www.haka-security.org/;
    license = stdenv.lib.licenses.mpl20;
    maintaineres = [ stdenv.lib.maintainers.tvestelind ];
    platforms = stdenv.lib.platforms.linux;
  };
}