2017-01-31 02:41:23 -08:00
|
|
|
{ stdenv, lib, fetchurl, pkgconfig, pcre, perl, flex, bison, gettext, libpcap, libnl, c-ares
|
|
|
|
, gnutls, libgcrypt, libgpgerror, geoip, openssl, lua5, makeDesktopItem, python, libcap, glib
|
2018-03-01 04:50:20 -08:00
|
|
|
, libssh, zlib, cmake, extra-cmake-modules, fetchpatch, makeWrapper
|
2018-02-24 18:23:58 -08:00
|
|
|
, withGtk ? false, gtk3 ? null, librsvg ? null, gsettings-desktop-schemas ? null, wrapGAppsHook ? null
|
2017-01-31 02:41:23 -08:00
|
|
|
, withQt ? false, 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
|
|
|
|
2017-01-31 02:41:23 -08:00
|
|
|
assert withGtk -> !withQt && gtk3 != null;
|
|
|
|
assert withQt -> !withGtk && qt5 != null;
|
2014-09-19 09:49:08 -07:00
|
|
|
|
|
|
|
with stdenv.lib;
|
|
|
|
|
|
|
|
let
|
2018-05-28 15:21:33 -07:00
|
|
|
version = "2.4.7";
|
2014-09-19 09:49:08 -07:00
|
|
|
variant = if withGtk then "gtk" else 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 {
|
2014-09-19 09:49:08 -07:00
|
|
|
name = "wireshark-${variant}-${version}";
|
2011-11-14 07:11:23 -08:00
|
|
|
|
2007-05-13 16:24:34 -07:00
|
|
|
src = fetchurl {
|
2017-08-01 02:40:53 -07:00
|
|
|
url = "http://www.wireshark.org/download/src/all-versions/wireshark-${version}.tar.xz";
|
2018-05-28 15:21:33 -07:00
|
|
|
sha256 = "0i2ggkkx7fphsk7kv9kygsf5pcaf4vgnqgi8mj1rrf2gfdl3rjsy";
|
2011-11-14 07:11:23 -08:00
|
|
|
};
|
|
|
|
|
2018-01-05 20:45:23 -08:00
|
|
|
cmakeFlags = [
|
|
|
|
"-DBUILD_wireshark_gtk=${if withGtk then "ON" else "OFF"}"
|
|
|
|
"-DBUILD_wireshark=${if withQt then "ON" else "OFF"}"
|
2018-03-01 04:50:20 -08:00
|
|
|
"-DENABLE_QT5=${if withQt then "ON" else "OFF"}"
|
|
|
|
"-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 = [
|
2017-09-14 12:24:37 -07:00
|
|
|
bison cmake extra-cmake-modules flex pkgconfig
|
2017-03-15 14:53:32 -07:00
|
|
|
] ++ optional withGtk wrapGAppsHook;
|
|
|
|
|
2014-01-15 07:44:52 -08:00
|
|
|
buildInputs = [
|
2017-09-14 12:24:37 -07:00
|
|
|
gettext pcre perl libpcap lua5 libssh openssl libgcrypt
|
2018-03-01 04:50:20 -08:00
|
|
|
libgpgerror gnutls geoip c-ares python glib zlib makeWrapper
|
2017-03-15 14:53:32 -07:00
|
|
|
] ++ optionals withQt (with qt5; [ qtbase qtmultimedia qtsvg qttools ])
|
2018-02-24 18:23:58 -08:00
|
|
|
++ optionals withGtk [ gtk3 librsvg gsettings-desktop-schemas ]
|
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-03-01 04:50:20 -08:00
|
|
|
})
|
|
|
|
++ stdenv.lib.optional stdenv.isDarwin ./cmake.patch;
|
2014-04-13 08:06:00 -07:00
|
|
|
|
2018-03-01 04:50:20 -08:00
|
|
|
postInstall = if stdenv.isDarwin then ''
|
|
|
|
${optionalString withQt ''
|
|
|
|
mkdir -p $out/Applications
|
|
|
|
mv $out/bin/Wireshark.app $out/Applications/Wireshark.app
|
|
|
|
|
|
|
|
for so in $out/Applications/Wireshark.app/Contents/PlugIns/wireshark/*.so; do
|
|
|
|
install_name_tool $so -change libwireshark.10.dylib $out/lib/libwireshark.10.dylib
|
|
|
|
install_name_tool $so -change libwiretap.7.dylib $out/lib/libwiretap.7.dylib
|
|
|
|
install_name_tool $so -change libwsutil.8.dylib $out/lib/libwsutil.8.dylib
|
|
|
|
done
|
|
|
|
|
|
|
|
wrapProgram $out/Applications/Wireshark.app/Contents/MacOS/Wireshark \
|
|
|
|
--set QT_PLUGIN_PATH ${qt5.qtbase.bin}/${qt5.qtbase.qtPluginPrefix}
|
|
|
|
''}
|
|
|
|
'' else optionalString (withQt || withGtk) ''
|
2017-01-31 02:41:23 -08:00
|
|
|
${optionalString withGtk ''
|
|
|
|
install -Dm644 -t $out/share/applications ../wireshark-gtk.desktop
|
|
|
|
''}
|
|
|
|
${optionalString withQt ''
|
|
|
|
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 \
|
|
|
|
--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
|
2013-05-21 13:48:50 -07:00
|
|
|
'';
|
|
|
|
|
2014-01-17 02:10:58 -08:00
|
|
|
enableParallelBuilding = 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
|
|
|
};
|
|
|
|
}
|