2021-01-19 06:50:56 +00:00
|
|
|
{ lib, stdenv, fetchurl, pkg-config, pcre, perl, flex, bison, gettext, libpcap, libnl, c-ares
|
2021-09-04 20:05:03 +00:00
|
|
|
, gnutls, libgcrypt, libgpg-error, geoip, openssl, lua5, python3, libcap, glib
|
2021-03-12 06:03:16 +00:00
|
|
|
, libssh, nghttp2, zlib, cmake, makeWrapper
|
2021-11-28 09:45:40 +00:00
|
|
|
, withQt ? true, qt5 ? null
|
2016-11-17 21:07:05 +00:00
|
|
|
, ApplicationServices, SystemConfiguration, gmp
|
2022-01-09 23:55:16 +00:00
|
|
|
, asciidoctor
|
2011-11-14 15:11:23 +00:00
|
|
|
}:
|
2007-05-13 23:24:34 +00:00
|
|
|
|
2019-03-03 08:15:03 +00:00
|
|
|
assert withQt -> qt5 != null;
|
2014-09-19 16:49:08 +00:00
|
|
|
|
2021-01-15 13:21:58 +00:00
|
|
|
with lib;
|
2014-09-19 16:49:08 +00:00
|
|
|
|
|
|
|
let
|
2022-02-10 21:16:31 +00:00
|
|
|
version = "3.6.2";
|
2019-03-03 08:15:03 +00:00
|
|
|
variant = if withQt then "qt" else "cli";
|
2013-02-27 14:07:28 +00:00
|
|
|
|
2017-01-31 10:41:23 +00:00
|
|
|
in stdenv.mkDerivation {
|
2019-05-13 01:11:48 +00:00
|
|
|
pname = "wireshark-${variant}";
|
|
|
|
inherit version;
|
2018-10-27 11:15:31 +00:00
|
|
|
outputs = [ "out" "dev" ];
|
2011-11-14 15:11:23 +00:00
|
|
|
|
2007-05-13 23:24:34 +00:00
|
|
|
src = fetchurl {
|
2018-06-28 18:43:35 +00:00
|
|
|
url = "https://www.wireshark.org/download/src/all-versions/wireshark-${version}.tar.xz";
|
2022-02-10 21:16:31 +00:00
|
|
|
sha256 = "sha256-XZAaVXKu+VPwStwlPtKgaZ1MYnedMkkCHh6FQaAkww4=";
|
2011-11-14 15:11:23 +00:00
|
|
|
};
|
|
|
|
|
2018-01-06 04:45:23 +00:00
|
|
|
cmakeFlags = [
|
|
|
|
"-DBUILD_wireshark=${if withQt then "ON" else "OFF"}"
|
2018-03-01 12:50:20 +00:00
|
|
|
"-DENABLE_APPLICATION_BUNDLE=${if withQt && stdenv.isDarwin then "ON" else "OFF"}"
|
2020-03-15 15:23:23 +00:00
|
|
|
# Fix `extcap` and `plugins` paths. See https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=16444
|
|
|
|
"-DCMAKE_INSTALL_LIBDIR=lib"
|
2018-01-06 04:45:23 +00:00
|
|
|
];
|
2017-08-01 09:40:53 +00:00
|
|
|
|
2020-06-14 02:56:50 +00:00
|
|
|
# Avoid referencing -dev paths because of debug assertions.
|
|
|
|
NIX_CFLAGS_COMPILE = [ "-DQT_NO_DEBUG" ];
|
|
|
|
|
2022-01-09 23:55:16 +00:00
|
|
|
nativeBuildInputs = [ asciidoctor bison cmake flex makeWrapper pkg-config ] ++ optional withQt qt5.wrapQtAppsHook;
|
2017-03-15 21:53:32 +00:00
|
|
|
|
2014-01-15 15:44:52 +00:00
|
|
|
buildInputs = [
|
2021-01-03 13:36:16 +00:00
|
|
|
gettext pcre perl libpcap lua5 libssh nghttp2 openssl libgcrypt
|
2021-09-04 20:05:03 +00:00
|
|
|
libgpg-error gnutls geoip c-ares python3 glib zlib
|
2017-03-15 21:53:32 +00:00
|
|
|
] ++ optionals withQt (with qt5; [ qtbase qtmultimedia qtsvg qttools ])
|
2017-01-31 10:41:23 +00:00
|
|
|
++ optionals stdenv.isLinux [ libcap libnl ]
|
2018-03-01 12:50:20 +00:00
|
|
|
++ optionals stdenv.isDarwin [ SystemConfiguration ApplicationServices gmp ]
|
|
|
|
++ optionals (withQt && stdenv.isDarwin) (with qt5; [ qtmacextras ]);
|
2011-11-14 15:11:23 +00:00
|
|
|
|
2021-02-04 13:29:44 +00:00
|
|
|
patches = [ ./wireshark-lookup-dumpcap-in-path.patch ];
|
2018-08-17 02:56:36 +00:00
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
sed -i -e '1i cmake_policy(SET CMP0025 NEW)' CMakeLists.txt
|
|
|
|
'';
|
2014-04-13 15:06:00 +00:00
|
|
|
|
2018-06-19 19:14:28 +00:00
|
|
|
preBuild = ''
|
|
|
|
export LD_LIBRARY_PATH="$PWD/run"
|
|
|
|
'';
|
|
|
|
|
2019-04-08 19:46:15 +00:00
|
|
|
postInstall = ''
|
|
|
|
# to remove "cycle detected in the references"
|
|
|
|
mkdir -p $dev/lib/wireshark
|
|
|
|
mv $out/lib/wireshark/cmake $dev/lib/wireshark
|
|
|
|
'' + (if stdenv.isDarwin && withQt then ''
|
|
|
|
mkdir -p $out/Applications
|
|
|
|
mv $out/bin/Wireshark.app $out/Applications/Wireshark.app
|
|
|
|
|
2019-04-08 20:50:42 +00:00
|
|
|
for f in $(find $out/Applications/Wireshark.app/Contents/PlugIns -name "*.so"); do
|
|
|
|
for dylib in $(otool -L $f | awk '/^\t*lib/ {print $1}'); do
|
|
|
|
install_name_tool -change "$dylib" "$out/lib/$dylib" "$f"
|
|
|
|
done
|
2019-04-08 19:46:15 +00:00
|
|
|
done
|
2019-03-03 08:15:03 +00:00
|
|
|
'' else optionalString withQt ''
|
2021-12-28 22:53:10 +00:00
|
|
|
install -Dm644 -t $out/share/applications ../org.wireshark.Wireshark.desktop
|
2011-11-14 15:11:23 +00:00
|
|
|
|
2017-01-31 10:41:23 +00:00
|
|
|
install -Dm644 ../image/wsicon.svg $out/share/icons/wireshark.svg
|
2021-12-28 22:53:10 +00:00
|
|
|
mkdir $dev/include/{epan/{wmem,ftypes,dfilter},wsutil/wmem,wiretap} -pv
|
2018-10-27 11:15:31 +00:00
|
|
|
|
2021-03-09 13:33:51 +00:00
|
|
|
cp config.h $dev/include/wireshark/
|
2018-10-27 11:15:31 +00:00
|
|
|
cp ../ws_*.h $dev/include
|
|
|
|
cp ../epan/*.h $dev/include/epan/
|
|
|
|
cp ../epan/ftypes/*.h $dev/include/epan/ftypes/
|
|
|
|
cp ../epan/dfilter/*.h $dev/include/epan/dfilter/
|
|
|
|
cp ../wsutil/*.h $dev/include/wsutil/
|
2021-12-28 22:53:10 +00:00
|
|
|
cp ../wsutil/wmem/*.h $dev/include/wsutil/wmem/
|
2018-10-27 11:15:31 +00:00
|
|
|
cp ../wiretap/*.h $dev/include/wiretap
|
2019-04-08 19:46:15 +00:00
|
|
|
'');
|
2013-05-21 20:48:50 +00:00
|
|
|
|
2019-05-13 01:11:48 +00:00
|
|
|
dontFixCmake = true;
|
|
|
|
|
2018-05-09 05:31:26 +00:00
|
|
|
shellHook = ''
|
|
|
|
# to be able to run the resulting binary
|
|
|
|
export WIRESHARK_RUN_FROM_BUILD_DIRECTORY=1
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-02-27 00:35:25 +00:00
|
|
|
homepage = "https://www.wireshark.org/";
|
2021-06-04 09:52:11 +00:00
|
|
|
changelog = "https://www.wireshark.org/docs/relnotes/wireshark-${version}.html";
|
2014-09-19 19:12:14 +00:00
|
|
|
description = "Powerful network protocol analyzer";
|
2021-03-12 06:03:16 +00:00
|
|
|
license = licenses.gpl2Plus;
|
2011-11-14 15:11:23 +00:00
|
|
|
|
|
|
|
longDescription = ''
|
2013-05-21 20:48:50 +00:00
|
|
|
Wireshark (formerly known as "Ethereal") is a powerful network
|
2011-11-14 15:11:23 +00:00
|
|
|
protocol analyzer developed by an international team of networking
|
2017-08-06 22:05:18 +00:00
|
|
|
experts. It runs on UNIX, macOS and Windows.
|
2011-11-14 15:11:23 +00:00
|
|
|
'';
|
|
|
|
|
2018-03-01 12:50:20 +00:00
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
2017-01-31 10:41:23 +00:00
|
|
|
maintainers = with maintainers; [ bjornfor fpletz ];
|
2021-05-23 12:54:17 +00:00
|
|
|
mainProgram = if withQt then "wireshark" else "tshark";
|
2007-05-13 23:24:34 +00:00
|
|
|
};
|
|
|
|
}
|