From 1175e3e46bbdb3f521bc6e01d89523171e5270d6 Mon Sep 17 00:00:00 2001 From: LluĂ­s Batlle i Rossell Date: Thu, 22 Sep 2011 09:19:33 +0000 Subject: Adding etherape, although it wants those gconf things I think. svn path=/nixpkgs/trunk/; revision=29437 --- .../networking/sniffers/etherape/default.nix | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 pkgs/applications/networking/sniffers/etherape/default.nix (limited to 'pkgs/applications/networking/sniffers/etherape/default.nix') 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; + }; +} -- cgit 1.4.1