2017-01-31 10:41:23 +00:00
|
|
|
{ stdenv, lib, fetchurl, pkgconfig, pcre, perl, flex, bison, gettext, libpcap, libnl, c-ares
|
|
|
|
, gnutls, libgcrypt, libgpgerror, geoip, openssl, lua5, makeDesktopItem, python, libcap, glib
|
2017-08-01 10:40:53 +01:00
|
|
|
, libssh, zlib, cmake, extra-cmake-modules, fetchpatch
|
2017-03-15 21:53:32 +00:00
|
|
|
, withGtk ? false, gtk3 ? null, librsvg ? null, gsettings_desktop_schemas ? null, wrapGAppsHook ? null
|
2017-01-31 10:41:23 +00:00
|
|
|
, withQt ? false, qt5 ? null
|
2016-11-17 21:07:05 +00:00
|
|
|
, ApplicationServices, SystemConfiguration, gmp
|
2011-11-14 15:11:23 +00:00
|
|
|
}:
|
2007-05-14 00:24:34 +01:00
|
|
|
|
2017-01-31 10:41:23 +00:00
|
|
|
assert withGtk -> !withQt && gtk3 != null;
|
|
|
|
assert withQt -> !withGtk && qt5 != null;
|
2014-09-19 17:49:08 +01:00
|
|
|
|
|
|
|
with stdenv.lib;
|
|
|
|
|
|
|
|
let
|
2018-01-14 21:42:28 +00:00
|
|
|
version = "2.4.4";
|
2014-09-19 17:49:08 +01:00
|
|
|
variant = if withGtk then "gtk" else 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 {
|
2014-09-19 17:49:08 +01:00
|
|
|
name = "wireshark-${variant}-${version}";
|
2011-11-14 15:11:23 +00:00
|
|
|
|
2007-05-14 00:24:34 +01:00
|
|
|
src = fetchurl {
|
2017-08-01 10:40:53 +01:00
|
|
|
url = "http://www.wireshark.org/download/src/all-versions/wireshark-${version}.tar.xz";
|
2018-01-14 21:42:28 +00:00
|
|
|
sha256 = "0n3g28hrhifnchlz4av0blq4ykm4zaxwwxbzdm9wsba27677b6h4";
|
2011-11-14 15:11:23 +00:00
|
|
|
};
|
|
|
|
|
2018-01-06 04:45:23 +00:00
|
|
|
cmakeFlags = [
|
|
|
|
"-DBUILD_wireshark_gtk=${if withGtk then "ON" else "OFF"}"
|
|
|
|
"-DBUILD_wireshark=${if withQt then "ON" else "OFF"}"
|
|
|
|
];
|
2017-08-01 10:40:53 +01:00
|
|
|
|
2017-03-15 21:53:32 +00:00
|
|
|
nativeBuildInputs = [
|
2017-09-14 20:24:37 +01:00
|
|
|
bison cmake extra-cmake-modules flex pkgconfig
|
2017-03-15 21:53:32 +00:00
|
|
|
] ++ optional withGtk wrapGAppsHook;
|
|
|
|
|
2014-01-15 15:44:52 +00:00
|
|
|
buildInputs = [
|
2017-09-14 20:24:37 +01:00
|
|
|
gettext pcre perl libpcap lua5 libssh openssl libgcrypt
|
2017-03-15 21:53:32 +00:00
|
|
|
libgpgerror gnutls geoip c-ares python glib zlib
|
|
|
|
] ++ optionals withQt (with qt5; [ qtbase qtmultimedia qtsvg qttools ])
|
|
|
|
++ optionals withGtk [ gtk3 librsvg gsettings_desktop_schemas ]
|
2017-01-31 10:41:23 +00:00
|
|
|
++ optionals stdenv.isLinux [ libcap libnl ]
|
2016-11-17 21:07:05 +00:00
|
|
|
++ optionals stdenv.isDarwin [ SystemConfiguration ApplicationServices gmp ];
|
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";
|
|
|
|
});
|
2014-04-13 16:06:00 +01:00
|
|
|
|
2017-01-31 10:41:23 +00:00
|
|
|
postInstall = optionalString (withQt || withGtk) ''
|
|
|
|
${optionalString withGtk ''
|
|
|
|
install -Dm644 -t $out/share/applications ../wireshark-gtk.desktop
|
|
|
|
''}
|
|
|
|
${optionalString withQt ''
|
|
|
|
install -Dm644 -t $out/share/applications ../wireshark.desktop
|
|
|
|
''}
|
2011-11-14 15:11:23 +00:00
|
|
|
|
2017-01-31 10:41:23 +00:00
|
|
|
substituteInPlace $out/share/applications/*.desktop \
|
|
|
|
--replace "Exec=wireshark" "Exec=$out/bin/wireshark"
|
2013-05-21 21:48:50 +01:00
|
|
|
|
2017-01-31 10:41:23 +00:00
|
|
|
install -Dm644 ../image/wsicon.svg $out/share/icons/wireshark.svg
|
2013-05-21 21:48:50 +01:00
|
|
|
'';
|
|
|
|
|
2014-01-17 10:10:58 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2017-01-31 10:41:23 +00:00
|
|
|
meta = with stdenv.lib; {
|
2017-06-20 02:39:39 +01:00
|
|
|
homepage = https://www.wireshark.org/;
|
2014-09-19 20:12:14 +01: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 21:48:50 +01: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 23:05:18 +01:00
|
|
|
experts. It runs on UNIX, macOS and Windows.
|
2011-11-14 15:11:23 +00:00
|
|
|
'';
|
|
|
|
|
2017-09-22 17:49:57 +01:00
|
|
|
platforms = platforms.linux;
|
2017-01-31 10:41:23 +00:00
|
|
|
maintainers = with maintainers; [ bjornfor fpletz ];
|
2007-05-14 00:24:34 +01:00
|
|
|
};
|
|
|
|
}
|