2018-07-21 00:44:44 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, pcre, perl, flex, bison, gettext, libpcap, libnl, c-ares
|
2019-03-03 08:15:03 +00:00
|
|
|
, gnutls, libgcrypt, libgpgerror, geoip, openssl, lua5, python3, libcap, glib
|
2019-08-26 14:25:48 +00:00
|
|
|
, libssh, nghttp2, zlib, cmake, fetchpatch, makeWrapper
|
2019-02-03 15:30:43 +00:00
|
|
|
, withQt ? true, qt5 ? null
|
2016-11-17 21:07:05 +00:00
|
|
|
, ApplicationServices, SystemConfiguration, gmp
|
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
|
|
|
|
|
|
|
with stdenv.lib;
|
|
|
|
|
|
|
|
let
|
2020-12-21 22:12:10 +00:00
|
|
|
version = "3.4.2";
|
2019-03-03 08:15:03 +00:00
|
|
|
variant = if withQt then "qt" else "cli";
|
2020-06-04 06:29:38 +00:00
|
|
|
pcap = libpcap.override { withBluez = stdenv.isLinux; };
|
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";
|
2020-12-21 22:12:10 +00:00
|
|
|
sha256 = "1i548w6zv6ni5n22rs90a12aakyq811493dxmadlcsj2krr6i66y";
|
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" ];
|
|
|
|
|
2017-03-15 21:53:32 +00:00
|
|
|
nativeBuildInputs = [
|
2019-08-26 14:25:48 +00:00
|
|
|
bison cmake flex pkgconfig
|
2019-07-05 15:42:08 +00:00
|
|
|
] ++ optional withQt qt5.wrapQtAppsHook;
|
2017-03-15 21:53:32 +00:00
|
|
|
|
2014-01-15 15:44:52 +00:00
|
|
|
buildInputs = [
|
2020-06-04 06:29:38 +00:00
|
|
|
gettext pcre perl pcap lua5 libssh nghttp2 openssl libgcrypt
|
2019-03-03 08:15:03 +00:00
|
|
|
libgpgerror gnutls geoip c-ares python3 glib zlib makeWrapper
|
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
|
|
|
|
2018-01-14 21:49:30 +00:00
|
|
|
patches = [ ./wireshark-lookup-dumpcap-in-path.patch ]
|
|
|
|
# https://code.wireshark.org/review/#/c/23728/
|
|
|
|
++ stdenv.lib.optional stdenv.hostPlatform.isMusl (fetchpatch {
|
|
|
|
name = "fix-timeout.patch";
|
|
|
|
url = "https://code.wireshark.org/review/gitweb?p=wireshark.git;a=commitdiff_plain;h=8b5b843fcbc3e03e0fc45f3caf8cf5fc477e8613;hp=94af9724d140fd132896b650d10c4d060788e4f0";
|
|
|
|
sha256 = "1g2dm7lwsnanwp68b9xr9swspx7hfj4v3z44sz3yrfmynygk8zlv";
|
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
|
2018-03-01 12:50:20 +00:00
|
|
|
|
2019-07-05 15:42:08 +00:00
|
|
|
wrapQtApp $out/Applications/Wireshark.app/Contents/MacOS/Wireshark
|
2019-03-03 08:15:03 +00:00
|
|
|
'' else optionalString withQt ''
|
2019-04-08 19:46:15 +00:00
|
|
|
install -Dm644 -t $out/share/applications ../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
|
2018-10-27 11:15:31 +00:00
|
|
|
mkdir $dev/include/{epan/{wmem,ftypes,dfilter},wsutil,wiretap} -pv
|
|
|
|
|
|
|
|
cp config.h $dev/include/
|
|
|
|
cp ../ws_*.h $dev/include
|
|
|
|
cp ../epan/*.h $dev/include/epan/
|
|
|
|
cp ../epan/wmem/*.h $dev/include/epan/wmem/
|
|
|
|
cp ../epan/ftypes/*.h $dev/include/epan/ftypes/
|
|
|
|
cp ../epan/dfilter/*.h $dev/include/epan/dfilter/
|
|
|
|
cp ../wsutil/*.h $dev/include/wsutil/
|
|
|
|
cp ../wiretap/*.h $dev/include/wiretap
|
2019-04-08 19:46:15 +00:00
|
|
|
'');
|
2013-05-21 20:48:50 +00:00
|
|
|
|
2014-01-17 10:10:58 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
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
|
|
|
|
'';
|
|
|
|
|
2017-01-31 10:41:23 +00:00
|
|
|
meta = with stdenv.lib; {
|
2020-02-27 00:35:25 +00:00
|
|
|
homepage = "https://www.wireshark.org/";
|
2014-09-19 19:12:14 +00:00
|
|
|
description = "Powerful network protocol analyzer";
|
2017-01-31 10:41:23 +00:00
|
|
|
license = licenses.gpl2;
|
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 ];
|
2007-05-13 23:24:34 +00:00
|
|
|
};
|
|
|
|
}
|