summary refs log tree commit diff
path: root/pkgs/applications/networking/sniffers/etherape/default.nix
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2011-09-22 09:19:33 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2011-09-22 09:19:33 +0000
commit1175e3e46bbdb3f521bc6e01d89523171e5270d6 (patch)
tree979aa41bf9db060b0bfd057a023ae766a2894623 /pkgs/applications/networking/sniffers/etherape/default.nix
parentd7d67556548c3f4bd27b7fd08707f8164b0d7d33 (diff)
downloadnixlib-1175e3e46bbdb3f521bc6e01d89523171e5270d6.tar
nixlib-1175e3e46bbdb3f521bc6e01d89523171e5270d6.tar.gz
nixlib-1175e3e46bbdb3f521bc6e01d89523171e5270d6.tar.bz2
nixlib-1175e3e46bbdb3f521bc6e01d89523171e5270d6.tar.lz
nixlib-1175e3e46bbdb3f521bc6e01d89523171e5270d6.tar.xz
nixlib-1175e3e46bbdb3f521bc6e01d89523171e5270d6.tar.zst
nixlib-1175e3e46bbdb3f521bc6e01d89523171e5270d6.zip
Adding etherape, although it wants those gconf things I think.
svn path=/nixpkgs/trunk/; revision=29437
Diffstat (limited to 'pkgs/applications/networking/sniffers/etherape/default.nix')
-rw-r--r--pkgs/applications/networking/sniffers/etherape/default.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/pkgs/applications/networking/sniffers/etherape/default.nix b/pkgs/applications/networking/sniffers/etherape/default.nix
new file mode 100644
index 000000000000..e268cdb7bbae
--- /dev/null
+++ b/pkgs/applications/networking/sniffers/etherape/default.nix
@@ -0,0 +1,20 @@
+{stdenv, fetchurl, pkgconfig, gtk, libpcap, libglade, libgnome, libgnomeui,
+gnomedocutils, scrollkeeper, libxslt}:
+
+stdenv.mkDerivation rec {
+  name = "etherape-0.9.12";
+  src = fetchurl {
+    url = "mirror://sourceforge/etherape/${name}.tar.gz";
+    sha256 = "0ici0aqw2r221lc3rhrdcnvavbhcj0ybwawgrhh399i74w7wf14k";
+  };
+
+  configureFlags = [ "--disable-scrollkeeper" ];
+  buildInputs = [ gtk libpcap pkgconfig libglade libgnome libgnomeui gnomedocutils
+    scrollkeeper libxslt ];
+
+  meta = {
+    homepage = http://etherape.sourceforge.net/;
+    license = "GPLv2+";
+    platforms = with stdenv.lib.platforms; linux;
+  };
+}