2018-07-20 17:44:44 -07:00
|
|
|
{ stdenv, fetchurl, pkgconfig, pcre, perl, flex, bison, gettext, libpcap, libnl, c-ares
|
2019-03-03 00:15:03 -08:00
|
|
|
, gnutls, libgcrypt, libgpgerror, geoip, openssl, lua5, python3, libcap, glib
|
2019-08-26 07:25:48 -07:00
|
|
|
, libssh, nghttp2, zlib, cmake, fetchpatch, makeWrapper
|
2019-02-03 07:30:43 -08:00
|
|
|
, withQt ? true, qt5 ? null
|
2016-11-17 13:07:05 -08:00
|
|
|
, ApplicationServices, SystemConfiguration, gmp
|
2011-11-14 07:11:23 -08:00
|
|
|
}:
|
2007-05-13 16:24:34 -07:00
|
|
|
|
2019-03-03 00:15:03 -08:00
|
|
|
assert withQt -> qt5 != null;
|
2014-09-19 09:49:08 -07:00
|
|
|
|
|
|
|
with stdenv.lib;
|
|
|
|
|
|
|
|
let
|
2019-09-29 04:13:03 -07:00
|
|
|
version = "3.0.5";
|
2019-03-03 00:15:03 -08:00
|
|
|
variant = if withQt then "qt" else "cli";
|
2013-02-27 06:07:28 -08:00
|
|
|
|
2017-01-31 02:41:23 -08:00
|
|
|
in stdenv.mkDerivation {
|
2019-05-12 18:11:48 -07:00
|
|
|
pname = "wireshark-${variant}";
|
|
|
|
inherit version;
|
2018-10-27 04:15:31 -07:00
|
|
|
outputs = [ "out" "dev" ];
|
2011-11-14 07:11:23 -08:00
|
|
|
|
2007-05-13 16:24:34 -07:00
|
|
|
src = fetchurl {
|
2018-06-28 11:43:35 -07:00
|
|
|
url = "https://www.wireshark.org/download/src/all-versions/wireshark-${version}.tar.xz";
|
2019-09-29 04:13:03 -07:00
|
|
|
sha256 = "087qv7nd7zlbckvcs37fkkg7v0mw0hjd5yfbghqym764fpjgqlf5";
|
2011-11-14 07:11:23 -08:00
|
|
|
};
|
|
|
|
|
2018-01-05 20:45:23 -08:00
|
|
|
cmakeFlags = [
|
|
|
|
"-DBUILD_wireshark=${if withQt then "ON" else "OFF"}"
|
2018-03-01 04:50:20 -08:00
|
|
|
"-DENABLE_APPLICATION_BUNDLE=${if withQt && stdenv.isDarwin then "ON" else "OFF"}"
|
2018-01-05 20:45:23 -08:00
|
|
|
];
|
2017-08-01 02:40:53 -07:00
|
|
|
|
2017-03-15 14:53:32 -07:00
|
|
|
nativeBuildInputs = [
|
2019-08-26 07:25:48 -07:00
|
|
|
bison cmake flex pkgconfig
|
2019-07-05 08:42:08 -07:00
|
|
|
] ++ optional withQt qt5.wrapQtAppsHook;
|
2017-03-15 14:53:32 -07:00
|
|
|
|
2014-01-15 07:44:52 -08:00
|
|
|
buildInputs = [
|
2019-05-23 23:18:19 -07:00
|
|
|
gettext pcre perl libpcap lua5 libssh nghttp2 openssl libgcrypt
|
2019-03-03 00:15:03 -08:00
|
|
|
libgpgerror gnutls geoip c-ares python3 glib zlib makeWrapper
|
2017-03-15 14:53:32 -07:00
|
|
|
] ++ optionals withQt (with qt5; [ qtbase qtmultimedia qtsvg qttools ])
|
2017-01-31 02:41:23 -08:00
|
|
|
++ optionals stdenv.isLinux [ libcap libnl ]
|
2018-03-01 04:50:20 -08:00
|
|
|
++ optionals stdenv.isDarwin [ SystemConfiguration ApplicationServices gmp ]
|
|
|
|
++ optionals (withQt && stdenv.isDarwin) (with qt5; [ qtmacextras ]);
|
2011-11-14 07:11:23 -08:00
|
|
|
|
2018-01-14 13:49:30 -08: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-16 19:56:36 -07:00
|
|
|
});
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
sed -i -e '1i cmake_policy(SET CMP0025 NEW)' CMakeLists.txt
|
|
|
|
'';
|
2014-04-13 08:06:00 -07:00
|
|
|
|
2018-06-19 12:14:28 -07:00
|
|
|
preBuild = ''
|
|
|
|
export LD_LIBRARY_PATH="$PWD/run"
|
|
|
|
'';
|
|
|
|
|
2019-04-08 12:46:15 -07: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 13:50:42 -07: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 12:46:15 -07:00
|
|
|
done
|
2018-03-01 04:50:20 -08:00
|
|
|
|
2019-07-05 08:42:08 -07:00
|
|
|
wrapQtApp $out/Applications/Wireshark.app/Contents/MacOS/Wireshark
|
2019-03-03 00:15:03 -08:00
|
|
|
'' else optionalString withQt ''
|
2019-04-08 12:46:15 -07:00
|
|
|
install -Dm644 -t $out/share/applications ../wireshark.desktop
|
2011-11-14 07:11:23 -08:00
|
|
|
|
2017-01-31 02:41:23 -08:00
|
|
|
substituteInPlace $out/share/applications/*.desktop \
|
2019-04-08 12:46:15 -07:00
|
|
|
--replace "Exec=wireshark" "Exec=$out/bin/wireshark"
|
2013-05-21 13:48:50 -07:00
|
|
|
|
2017-01-31 02:41:23 -08:00
|
|
|
install -Dm644 ../image/wsicon.svg $out/share/icons/wireshark.svg
|
2018-10-27 04:15:31 -07: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 12:46:15 -07:00
|
|
|
'');
|
2013-05-21 13:48:50 -07:00
|
|
|
|
2014-01-17 02:10:58 -08:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2019-05-12 18:11:48 -07:00
|
|
|
dontFixCmake = true;
|
|
|
|
|
2018-05-08 22:31:26 -07:00
|
|
|
shellHook = ''
|
|
|
|
# to be able to run the resulting binary
|
|
|
|
export WIRESHARK_RUN_FROM_BUILD_DIRECTORY=1
|
|
|
|
'';
|
|
|
|
|
2017-01-31 02:41:23 -08:00
|
|
|
meta = with stdenv.lib; {
|
2017-06-19 18:39:39 -07:00
|
|
|
homepage = https://www.wireshark.org/;
|
2014-09-19 12:12:14 -07:00
|
|
|
description = "Powerful network protocol analyzer";
|
2017-01-31 02:41:23 -08:00
|
|
|
license = licenses.gpl2;
|
2011-11-14 07:11:23 -08:00
|
|
|
|
|
|
|
longDescription = ''
|
2013-05-21 13:48:50 -07:00
|
|
|
Wireshark (formerly known as "Ethereal") is a powerful network
|
2011-11-14 07:11:23 -08:00
|
|
|
protocol analyzer developed by an international team of networking
|
2017-08-06 15:05:18 -07:00
|
|
|
experts. It runs on UNIX, macOS and Windows.
|
2011-11-14 07:11:23 -08:00
|
|
|
'';
|
|
|
|
|
2018-03-01 04:50:20 -08:00
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
2017-01-31 02:41:23 -08:00
|
|
|
maintainers = with maintainers; [ bjornfor fpletz ];
|
2007-05-13 16:24:34 -07:00
|
|
|
};
|
|
|
|
}
|