e7f2ad0db9
`wireshark` expects `CMAKE_INSTALL_LIBDIR` to be relative and prefixes it with `CMAKE_INSTALL_PREFIX` in some places to make it absolute. This results in duplicate absolute paths being accessed, which don't exist. Making `CMAKE_INSTALL_LIBDIR` relative fixes this issue.
119 lines
4.1 KiB
Nix
119 lines
4.1 KiB
Nix
{ stdenv, fetchurl, pkgconfig, pcre, perl, flex, bison, gettext, libpcap, libnl, c-ares
|
|
, gnutls, libgcrypt, libgpgerror, geoip, openssl, lua5, python3, libcap, glib
|
|
, libssh, nghttp2, zlib, cmake, fetchpatch, makeWrapper
|
|
, withQt ? true, qt5 ? null
|
|
, ApplicationServices, SystemConfiguration, gmp
|
|
}:
|
|
|
|
assert withQt -> qt5 != null;
|
|
|
|
with stdenv.lib;
|
|
|
|
let
|
|
version = "3.2.2";
|
|
variant = if withQt then "qt" else "cli";
|
|
|
|
in stdenv.mkDerivation {
|
|
pname = "wireshark-${variant}";
|
|
inherit version;
|
|
outputs = [ "out" "dev" ];
|
|
|
|
src = fetchurl {
|
|
url = "https://www.wireshark.org/download/src/all-versions/wireshark-${version}.tar.xz";
|
|
sha256 = "0ygdxpz0i4jxp55fg9x4xcan093wycjb66yas073gviz9kpj6naz";
|
|
};
|
|
|
|
cmakeFlags = [
|
|
"-DBUILD_wireshark=${if withQt then "ON" else "OFF"}"
|
|
"-DENABLE_APPLICATION_BUNDLE=${if withQt && stdenv.isDarwin then "ON" else "OFF"}"
|
|
# Fix `extcap` and `plugins` paths. See https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=16444
|
|
"-DCMAKE_INSTALL_LIBDIR=lib"
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
bison cmake flex pkgconfig
|
|
] ++ optional withQt qt5.wrapQtAppsHook;
|
|
|
|
buildInputs = [
|
|
gettext pcre perl libpcap lua5 libssh nghttp2 openssl libgcrypt
|
|
libgpgerror gnutls geoip c-ares python3 glib zlib makeWrapper
|
|
] ++ optionals withQt (with qt5; [ qtbase qtmultimedia qtsvg qttools ])
|
|
++ optionals stdenv.isLinux [ libcap libnl ]
|
|
++ optionals stdenv.isDarwin [ SystemConfiguration ApplicationServices gmp ]
|
|
++ optionals (withQt && stdenv.isDarwin) (with qt5; [ qtmacextras ]);
|
|
|
|
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";
|
|
});
|
|
|
|
postPatch = ''
|
|
sed -i -e '1i cmake_policy(SET CMP0025 NEW)' CMakeLists.txt
|
|
'';
|
|
|
|
preBuild = ''
|
|
export LD_LIBRARY_PATH="$PWD/run"
|
|
'';
|
|
|
|
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
|
|
|
|
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
|
|
|
|
wrapQtApp $out/Applications/Wireshark.app/Contents/MacOS/Wireshark
|
|
'' else optionalString withQt ''
|
|
install -Dm644 -t $out/share/applications ../wireshark.desktop
|
|
|
|
substituteInPlace $out/share/applications/*.desktop \
|
|
--replace "Exec=wireshark" "Exec=$out/bin/wireshark"
|
|
|
|
install -Dm644 ../image/wsicon.svg $out/share/icons/wireshark.svg
|
|
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
|
|
'');
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
dontFixCmake = true;
|
|
|
|
shellHook = ''
|
|
# to be able to run the resulting binary
|
|
export WIRESHARK_RUN_FROM_BUILD_DIRECTORY=1
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = "https://www.wireshark.org/";
|
|
description = "Powerful network protocol analyzer";
|
|
license = licenses.gpl2;
|
|
|
|
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.
|
|
'';
|
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
maintainers = with maintainers; [ bjornfor fpletz ];
|
|
};
|
|
}
|