summary refs log tree commit diff
path: root/pkgs/applications/networking/sniffers
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2014-01-17 10:37:53 +0100
committerPeter Simons <simons@cryp.to>2014-01-17 10:37:53 +0100
commitac2a215c10fd1d9d61c869ca5afe86802e3c1860 (patch)
tree0e8486ee93a8789c1f192329e504a64ff24b3638 /pkgs/applications/networking/sniffers
parent47f5d8a5ea0bf248ae16541cf3496bd17eb8e447 (diff)
downloadnixpkgs-ac2a215c10fd1d9d61c869ca5afe86802e3c1860.tar
nixpkgs-ac2a215c10fd1d9d61c869ca5afe86802e3c1860.tar.gz
nixpkgs-ac2a215c10fd1d9d61c869ca5afe86802e3c1860.tar.bz2
nixpkgs-ac2a215c10fd1d9d61c869ca5afe86802e3c1860.tar.lz
nixpkgs-ac2a215c10fd1d9d61c869ca5afe86802e3c1860.tar.xz
nixpkgs-ac2a215c10fd1d9d61c869ca5afe86802e3c1860.tar.zst
nixpkgs-ac2a215c10fd1d9d61c869ca5afe86802e3c1860.zip
wireshark: build GUI with gtk3
This should be configurable, I guess.
Diffstat (limited to 'pkgs/applications/networking/sniffers')
-rw-r--r--pkgs/applications/networking/sniffers/wireshark/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/applications/networking/sniffers/wireshark/default.nix b/pkgs/applications/networking/sniffers/wireshark/default.nix
index 7ed23aae439..f8dc16ced8d 100644
--- a/pkgs/applications/networking/sniffers/wireshark/default.nix
+++ b/pkgs/applications/networking/sniffers/wireshark/default.nix
@@ -1,5 +1,5 @@
-{ stdenv, fetchurl, pkgconfig, perl, flex, bison, libpcap, libnl, c-ares, gnutls, libgcrypt
-, geoip, heimdal, lua5, gtk, makeDesktopItem, qt5
+{ stdenv, fetchurl, pkgconfig, perl, flex, bison, libpcap, libnl, c-ares
+, gnutls, libgcrypt, geoip, heimdal, lua5, gtk3, makeDesktopItem
 }:
 
 let version = "1.11.2"; in
@@ -14,10 +14,10 @@ stdenv.mkDerivation {
 
   buildInputs = [
     bison flex perl pkgconfig libpcap lua5 heimdal libgcrypt gnutls
-    geoip libnl c-ares gtk qt5
+    geoip libnl c-ares gtk3
   ];
 
-  configureFlags = "--disable-usr-local --enable-packet-editor --with-ssl";
+  configureFlags = "--disable-usr-local --disable-silent-rules --with-gtk3 --without-qt --with-ssl";
 
   desktopItem = makeDesktopItem {
     name = "Wireshark";