nixpkgs/pkgs/applications/networking/sniffers/etherape/default.nix
Lluís Batlle i Rossell 1175e3e46b Adding etherape, although it wants those gconf things I think.
svn path=/nixpkgs/trunk/; revision=29437
2011-09-22 09:19:33 +00:00

21 lines
624 B
Nix

{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;
};
}