30 lines
809 B
Nix
30 lines
809 B
Nix
{ stdenv, fetchzip, autoconf, automake, libtool, libpcap }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libcrafter";
|
|
version = "1.0";
|
|
|
|
src = fetchzip {
|
|
url = "https://github.com/pellegre/libcrafter/archive/version-${version}.zip";
|
|
sha256 = "1d2vgxawdwk2zg3scxclxdby1rhghmivly8azdjja89kw7gls9xl";
|
|
};
|
|
|
|
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";
|
|
license = stdenv.lib.licenses.bsd3;
|
|
maintainers = [ stdenv.lib.maintainers.lethalman ];
|
|
platforms = stdenv.lib.platforms.unix;
|
|
};
|
|
}
|