Updated wireshark (used all-versions/ url now so if version changes url will still be valid in the future) - is this good or bad?

svn path=/nixpkgs/trunk/; revision=11610
This commit is contained in:
Marc Weber 2008-04-12 12:44:56 +00:00
parent 8a58e5fe49
commit 7e43554ace
2 changed files with 5 additions and 5 deletions

View File

@ -1,10 +1,10 @@
{stdenv, fetchurl, perl, pkgconfig, gtk, libpcap}:
{stdenv, fetchurl, perl, pkgconfig, gtk, libpcap, flex, bison}:
stdenv.mkDerivation {
name = "wireshark-0.99.7";
src = fetchurl {
url = http://www.wireshark.org/download/src/wireshark-0.99.7.tar.bz2;
sha256 = "10pb2mn6p40gsq2nbnqdzihrpa078jdgxqh8l4zs33bxa1h37frc";
url = http://www.wireshark.org/download/src/all-versions/wireshark-1.0.0.tar.bz2;
sha256 = "1l4zrmxf3i2i8a5f953pbbpy1c44d1q3r79hbzq7q9x78vhi6ixm";
};
buildInputs = [perl pkgconfig gtk libpcap];
buildInputs = [perl pkgconfig gtk libpcap flex bison];
}

View File

@ -5108,7 +5108,7 @@ let pkgs = rec {
};
wireshark = import ../applications/networking/sniffers/wireshark {
inherit fetchurl stdenv perl pkgconfig libpcap;
inherit fetchurl stdenv perl pkgconfig libpcap flex bison;
inherit (gtkLibs) gtk;
};