Add libcrafter and tracebox

This commit is contained in:
Luca Bruno
2015-05-08 13:20:27 +02:00
parent de1968122b
commit eb98989cf0
3 changed files with 61 additions and 0 deletions
@@ -0,0 +1,26 @@
{ stdenv, fetchzip, autoconf, automake, libtool, libpcap }:
stdenv.mkDerivation rec {
name = "libcrafter-${version}";
version = "0.3";
src = fetchzip {
url = "https://github.com/pellegre/libcrafter/archive/version-${version}.zip";
sha256 = "04lpmshh4wb1dav03p6rnskpd1zmmvhv80xwn8v7l8faps5gvjp4";
};
preConfigure = "cd libcrafter";
configureScript = "./autogen.sh";
configureFlags = [ "--with-libpcap=yes" ];
buildInputs = [ autoconf automake libtool ];
propagatedBuildInputs = [ libpcap ];
meta = {
homepage = https://github.com/pellegre/libcrafter;
description = "High level C++ network packet sniffing and crafting library";
};
}