update libpcap to 1.1.1 and wireshark to 1.3.4

svn path=/nixpkgs/trunk/; revision=21205
This commit is contained in:
Armijn Hemel 2010-04-21 13:31:08 +00:00
parent 108e86ce6c
commit 1aee2df93a
2 changed files with 5 additions and 5 deletions

View File

@ -1,10 +1,10 @@
{stdenv, fetchurl, perl, pkgconfig, gtk, libpcap, flex, bison}:
stdenv.mkDerivation {
name = "wireshark-1.3.2";
name = "wireshark-1.3.4";
src = fetchurl {
url = http://www.wireshark.org/download/src/wireshark-1.3.2.tar.gz;
sha256 = "0sq0mk0iqsgcgd2gqspyfmjiql00d3ghq43qxywd8qb2jxfv1q5r";
url = http://media-2.cacetech.com/wireshark/src/wireshark-1.3.4.tar.bz2;
sha256 = "00pyr3izg5dg8kr4sayp0fq8q360syfhs2nvj6b4ff1mdal7ra3x";
};
configureFlags = "--with-pcap=${libpcap}";
buildInputs = [perl pkgconfig gtk libpcap flex bison];

View File

@ -1,11 +1,11 @@
{ stdenv, fetchurl, flex, bison }:
stdenv.mkDerivation rec {
name = "libpcap-1.1.0";
name = "libpcap-1.1.1";
src = fetchurl {
url = "http://www.tcpdump.org/release/${name}.tar.gz";
sha256 = "073hy17pvm203c0z3zpkp1b37sblcgf49c6a03az7kbniizbc07b";
sha256 = "11asds0r0vd9skbwfbgb1d2hqxr1d92kif4qhhqx2mbyahawm32h";
};
buildNativeInputs = [ flex bison ];