wireshark: compile with QT_NO_DEBUG to avoid depending on qt*-dev
This commit is contained in:
parent
33bc279247
commit
7198d973c1
@ -31,6 +31,9 @@ in stdenv.mkDerivation {
|
|||||||
"-DCMAKE_INSTALL_LIBDIR=lib"
|
"-DCMAKE_INSTALL_LIBDIR=lib"
|
||||||
];
|
];
|
||||||
|
|
||||||
|
# Avoid referencing -dev paths because of debug assertions.
|
||||||
|
NIX_CFLAGS_COMPILE = [ "-DQT_NO_DEBUG" ];
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
bison cmake flex pkgconfig
|
bison cmake flex pkgconfig
|
||||||
] ++ optional withQt qt5.wrapQtAppsHook;
|
] ++ optional withQt qt5.wrapQtAppsHook;
|
||||||
|
Loading…
Reference in New Issue
Block a user