Add ettercap, a comprehensive suite for man in the middle attacks
This commit is contained in:
18
pkgs/development/libraries/libnet/default.nix
Normal file
18
pkgs/development/libraries/libnet/default.nix
Normal file
@@ -0,0 +1,18 @@
|
||||
{ stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "libnet-${version}";
|
||||
version = "1.2-rc2";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/libnet-dev/${name}.tar.gz";
|
||||
sha256 = "1pc74p839a7wvhjdgy0scj7c4yarr6mqdqvj56k6sp8pkc763az7";
|
||||
};
|
||||
|
||||
meta = {
|
||||
homepage = http://github.com/sam-github/libnet;
|
||||
description = "Libnet provides a portable framework for low-level network packet construction.";
|
||||
license = stdenv.lib.licenses.bsd3;
|
||||
platforms = stdenv.lib.platforms.unix;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user