cleanups, build graphical frontend too

svn path=/nixpkgs/trunk/; revision=8677
This commit is contained in:
Armijn Hemel 2007-05-14 00:04:39 +00:00
parent 48039a1e77
commit c068774f59
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
{stdenv, fetchurl, perl, pkgconfig, glib, libpcap}:
{stdenv, fetchurl, perl, pkgconfig, gtk, libpcap}:
stdenv.mkDerivation {
name = "wireshark-0.99.5";
@ -6,5 +6,5 @@ stdenv.mkDerivation {
url = http://www.wireshark.org/download/src/wireshark-0.99.5.tar.gz;
sha256 = "0a6fkfdypfp73h1zxva2qxsm2mpkp1jv7p3d42xv5ghfwjqxyi0i";
};
buildInputs = [perl pkgconfig glib libpcap];
buildInputs = [perl pkgconfig gtk libpcap];
}