mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-29 09:04:17 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
59 lines
1.9 KiB
Nix
59 lines
1.9 KiB
Nix
{ lib, stdenv, fetchFromGitHub, fetchpatch2, cmake, libpcap, libnet, zlib, curl, pcre
|
|
, openssl, ncurses, glib, gtk3, atk, pango, flex, bison, geoip, harfbuzz
|
|
, pkg-config }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "ettercap";
|
|
version = "0.8.3.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Ettercap";
|
|
repo = "ettercap";
|
|
rev = "v${version}";
|
|
sha256 = "1sdf1ssa81ib6k0mc5m2jzbjl4jd1yv6ahv5dwx2x9w4b2pyqg1c";
|
|
};
|
|
|
|
patches = [
|
|
(fetchpatch2 {
|
|
name = "curl-8.patch";
|
|
url = "https://github.com/Ettercap/ettercap/commit/9ec4066addc49483e40055e0738c2e0ef144702f.diff";
|
|
sha256 = "6D8lIxub0OS52BFr42yWRyqS2Q5CrpTLTt6rcItXFMM=";
|
|
})
|
|
];
|
|
|
|
strictDeps = true;
|
|
nativeBuildInputs = [ cmake flex bison pkg-config ];
|
|
buildInputs = [
|
|
libpcap libnet zlib curl pcre openssl ncurses
|
|
glib gtk3 atk pango geoip harfbuzz
|
|
];
|
|
|
|
preConfigure = ''
|
|
substituteInPlace CMakeLists.txt --replace /etc \$\{INSTALL_PREFIX\}/etc \
|
|
--replace /usr \$\{INSTALL_PREFIX\}
|
|
'';
|
|
|
|
cmakeFlags = [
|
|
"-DBUNDLED_LIBS=Off"
|
|
"-DGTK3_GLIBCONFIG_INCLUDE_DIR=${glib.out}/lib/glib-2.0/include"
|
|
];
|
|
|
|
# TODO: Remove after the next release (0.8.4 should work without this):
|
|
env.NIX_CFLAGS_COMPILE = toString [ "-I${harfbuzz.dev}/include/harfbuzz" ];
|
|
|
|
meta = with lib; {
|
|
description = "Comprehensive suite for man in the middle attacks";
|
|
longDescription = ''
|
|
Ettercap is a comprehensive suite for man in the middle attacks. It
|
|
features sniffing of live connections, content filtering on the fly and
|
|
many other interesting tricks. It supports active and passive dissection
|
|
of many protocols and includes many features for network and host
|
|
analysis.
|
|
'';
|
|
homepage = "https://www.ettercap-project.org/";
|
|
license = licenses.gpl2;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ pSub ];
|
|
};
|
|
}
|