summary refs log tree commit diff
path: root/pkgs/applications/networking/sniffers
diff options
context:
space:
mode:
authorArmijn Hemel <armijn@gpl-violations.org>2007-05-13 23:24:34 +0000
committerArmijn Hemel <armijn@gpl-violations.org>2007-05-13 23:24:34 +0000
commit16fc4c08388afeddc9aaf693f1438d5947635fcf (patch)
treee31fc83e75f488679804aa98265cd0829270e525 /pkgs/applications/networking/sniffers
parent7374debd18c883fcc84cede8528cf48f420193ab (diff)
downloadnixlib-16fc4c08388afeddc9aaf693f1438d5947635fcf.tar
nixlib-16fc4c08388afeddc9aaf693f1438d5947635fcf.tar.gz
nixlib-16fc4c08388afeddc9aaf693f1438d5947635fcf.tar.bz2
nixlib-16fc4c08388afeddc9aaf693f1438d5947635fcf.tar.lz
nixlib-16fc4c08388afeddc9aaf693f1438d5947635fcf.tar.xz
nixlib-16fc4c08388afeddc9aaf693f1438d5947635fcf.tar.zst
nixlib-16fc4c08388afeddc9aaf693f1438d5947635fcf.zip
ethereal -> wireshark
update to 0.99.5

svn path=/nixpkgs/trunk/; revision=8675
Diffstat (limited to 'pkgs/applications/networking/sniffers')
-rw-r--r--pkgs/applications/networking/sniffers/ethereal/default.nix10
-rw-r--r--pkgs/applications/networking/sniffers/wireshark/default.nix10
2 files changed, 10 insertions, 10 deletions
diff --git a/pkgs/applications/networking/sniffers/ethereal/default.nix b/pkgs/applications/networking/sniffers/ethereal/default.nix
deleted file mode 100644
index 4303ec1feb33..000000000000
--- a/pkgs/applications/networking/sniffers/ethereal/default.nix
+++ /dev/null
@@ -1,10 +0,0 @@
-{stdenv, fetchurl, perl, pkgconfig, glib, libpcap}:
-
-stdenv.mkDerivation {
-  name = "ethereal-0.99";
-  src = fetchurl {
-    url = http://nix.cs.uu.nl/dist/tarballs/ethereal-0.99.0.tar.bz2;
-    md5 = "f9905b9d347acdc05af664a7553f7f76";
-  };
-  buildInputs = [perl pkgconfig glib libpcap];
-}
diff --git a/pkgs/applications/networking/sniffers/wireshark/default.nix b/pkgs/applications/networking/sniffers/wireshark/default.nix
new file mode 100644
index 000000000000..a3b5285e0349
--- /dev/null
+++ b/pkgs/applications/networking/sniffers/wireshark/default.nix
@@ -0,0 +1,10 @@
+{stdenv, fetchurl, perl, pkgconfig, glib, libpcap}:
+
+stdenv.mkDerivation {
+  name = "wireshark-0.99.5";
+  src = fetchurl {
+    url = http://www.wireshark.org/download/src/wireshark-0.99.5.tar.gz;
+    sha256 = "0a6fkfdypfp73h1zxva2qxsm2mpkp1jv7p3d42xv5ghfwjqxyi0i";
+  };
+  buildInputs = [perl pkgconfig glib libpcap];
+}