mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-11 16:23:26 +00:00
196 lines
3.9 KiB
Nix
196 lines
3.9 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitLab
|
|
|
|
, ApplicationServices
|
|
, asciidoctor
|
|
, bcg729
|
|
, bison
|
|
, buildPackages
|
|
, c-ares
|
|
, cmake
|
|
, flex
|
|
, gettext
|
|
, glib
|
|
, gmp
|
|
, gnutls
|
|
, libcap
|
|
, libgcrypt
|
|
, libgpg-error
|
|
, libkrb5
|
|
, libmaxminddb
|
|
, libnl
|
|
, libopus
|
|
, libpcap
|
|
, libsmi
|
|
, libssh
|
|
, lua5
|
|
, lz4
|
|
, makeWrapper
|
|
, minizip
|
|
, nghttp2
|
|
, nghttp3
|
|
, ninja
|
|
, opencore-amr
|
|
, openssl
|
|
, pcre2
|
|
, perl
|
|
, pkg-config
|
|
, python3
|
|
, sbc
|
|
, snappy
|
|
, spandsp3
|
|
, speexdsp
|
|
, SystemConfiguration
|
|
, wrapGAppsHook
|
|
, zlib
|
|
, zstd
|
|
|
|
, withQt ? true
|
|
, qt6 ? null
|
|
}:
|
|
|
|
assert withQt -> qt6 != null;
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "wireshark-${if withQt then "qt" else "cli"}";
|
|
version = "4.2.3";
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
src = fetchFromGitLab {
|
|
repo = "wireshark";
|
|
owner = "wireshark";
|
|
rev = "v${version}";
|
|
hash = "sha256-2kJBVO40F1m43317g337bk84ZSf6WPK04ir0xc5qxTc=";
|
|
};
|
|
|
|
patches = [
|
|
./patches/lookup-dumpcap-in-path.patch
|
|
];
|
|
|
|
depsBuildBuild = lib.optionals (stdenv.buildPlatform != stdenv.hostPlatform) [
|
|
buildPackages.stdenv.cc
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
asciidoctor
|
|
bison
|
|
cmake
|
|
flex
|
|
makeWrapper
|
|
ninja
|
|
perl
|
|
pkg-config
|
|
python3
|
|
] ++ lib.optionals withQt [
|
|
qt6.wrapQtAppsHook
|
|
wrapGAppsHook
|
|
];
|
|
|
|
buildInputs = [
|
|
bcg729
|
|
c-ares
|
|
gettext
|
|
glib
|
|
gnutls
|
|
libgcrypt
|
|
libgpg-error
|
|
libkrb5
|
|
libmaxminddb
|
|
libopus
|
|
libpcap
|
|
libsmi
|
|
libssh
|
|
lua5
|
|
lz4
|
|
minizip
|
|
nghttp2
|
|
nghttp3
|
|
opencore-amr
|
|
openssl
|
|
pcre2
|
|
snappy
|
|
spandsp3
|
|
speexdsp
|
|
zlib
|
|
zstd
|
|
] ++ lib.optionals withQt (with qt6; [
|
|
qt5compat
|
|
qtbase
|
|
qtmultimedia
|
|
qtsvg
|
|
qttools
|
|
]) ++ lib.optionals (withQt && stdenv.isLinux) [
|
|
qt6.qtwayland
|
|
] ++ lib.optionals stdenv.isLinux [
|
|
libcap
|
|
libnl
|
|
sbc
|
|
] ++ lib.optionals stdenv.isDarwin [
|
|
ApplicationServices
|
|
gmp
|
|
SystemConfiguration
|
|
];
|
|
|
|
strictDeps = true;
|
|
|
|
cmakeFlags = [
|
|
"-DBUILD_wireshark=${if withQt then "ON" else "OFF"}"
|
|
# Fix `extcap` and `plugins` paths. See https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=16444
|
|
"-DCMAKE_INSTALL_LIBDIR=lib"
|
|
"-DENABLE_APPLICATION_BUNDLE=${if withQt && stdenv.isDarwin then "ON" else "OFF"}"
|
|
"-DLEMON_C_COMPILER=cc"
|
|
] ++ lib.optionals (stdenv.buildPlatform != stdenv.hostPlatform) [
|
|
"-DHAVE_C99_VSNPRINTF_EXITCODE__TRYRUN_OUTPUT="
|
|
"-DHAVE_C99_VSNPRINTF_EXITCODE=0"
|
|
];
|
|
|
|
# Avoid referencing -dev paths because of debug assertions.
|
|
env.NIX_CFLAGS_COMPILE = toString [ "-DQT_NO_DEBUG" ];
|
|
|
|
dontFixCmake = true;
|
|
dontWrapGApps = true;
|
|
|
|
shellHook = ''
|
|
# to be able to run the resulting binary
|
|
export WIRESHARK_RUN_FROM_BUILD_DIRECTORY=1
|
|
'';
|
|
|
|
postPatch = ''
|
|
sed -i -e '1i cmake_policy(SET CMP0025 NEW)' CMakeLists.txt
|
|
'';
|
|
|
|
postInstall = ''
|
|
cmake --install . --prefix "''${!outputDev}" --component Development
|
|
'' + lib.optionalString (stdenv.isDarwin && withQt) ''
|
|
mkdir -p $out/Applications
|
|
mv $out/bin/Wireshark.app $out/Applications/Wireshark.app
|
|
|
|
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
|
|
done
|
|
'';
|
|
|
|
preFixup = ''
|
|
qtWrapperArgs+=("''${gappsWrapperArgs[@]}")
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Powerful network protocol analyzer";
|
|
longDescription = ''
|
|
Wireshark (formerly known as "Ethereal") is a powerful network
|
|
protocol analyzer developed by an international team of networking
|
|
experts. It runs on UNIX, macOS and Windows.
|
|
'';
|
|
homepage = "https://www.wireshark.org";
|
|
changelog = "https://www.wireshark.org/docs/relnotes/wireshark-${version}.html";
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
maintainers = with maintainers; [ bjornfor fpletz ];
|
|
mainProgram = if withQt then "wireshark" else "tshark";
|
|
};
|
|
}
|