From 478969d50c74afbdf11f99b8cb2df83ad6cc4384 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Forsman?= Date: Sat, 11 Apr 2015 13:23:35 +0200 Subject: [PATCH] wireshark: change dependency heimdal -> openssl This fixes wirehsark build, which has been broken since commit 942e179974ceae1d8 (heimdal: Correct the openssl dependency). --- pkgs/applications/networking/sniffers/wireshark/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/sniffers/wireshark/default.nix b/pkgs/applications/networking/sniffers/wireshark/default.nix index 8afe5650ca8..c1a656c428a 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, makeDesktopItem, python, libcap, glib +, gnutls, libgcrypt, geoip, openssl, lua5, makeDesktopItem, python, libcap, glib , withGtk ? false, gtk ? null , withQt ? false, qt4 ? null }: @@ -23,7 +23,7 @@ stdenv.mkDerivation { }; buildInputs = [ - bison flex perl pkgconfig libpcap lua5 heimdal libgcrypt gnutls + bison flex perl pkgconfig libpcap lua5 openssl libgcrypt gnutls geoip libnl c-ares python libcap glib ] ++ optional withQt qt4 ++ optional withGtk gtk;