Use tcpdump mirror scheme.

svn path=/nixpkgs/trunk/; revision=12780
This commit is contained in:
Ludovic Courtès
2008-09-01 13:00:24 +00:00
parent df4363229d
commit d22149a3b7
2 changed files with 15 additions and 4 deletions
+10 -2
View File
@@ -1,10 +1,18 @@
{stdenv, fetchurl, libpcap}:
stdenv.mkDerivation {
stdenv.mkDerivation rec {
name = "tcpdump-3.9.8";
src = fetchurl {
url = http://www.tcpdump.org/release/tcpdump-3.9.8.tar.gz;
url = "mirror://tcpdump/release/${name}.tar.gz";
sha256 = "16fjm1ih56mwqniffp63adbxwfj5n10x1a7l22j3cx683pmwh293";
};
buildInputs = [libpcap];
meta = {
description = "tcpdump, a famous network sniffer";
homepage = http://www.tcpdump.org/;
license = "BSD-style";
};
}