Adding etherape, although it wants those gconf things I think.
svn path=/nixpkgs/trunk/; revision=29437
This commit is contained in:
parent
d7d6755654
commit
1175e3e46b
2 changed files with 24 additions and 0 deletions
20
pkgs/applications/networking/sniffers/etherape/default.nix
Normal file
20
pkgs/applications/networking/sniffers/etherape/default.nix
Normal file
|
@ -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;
|
||||
};
|
||||
}
|
|
@ -6459,6 +6459,10 @@ let
|
|||
|
||||
esniper = callPackage ../applications/networking/esniper { };
|
||||
|
||||
etherape = callPackage ../applications/networking/sniffers/etherape {
|
||||
inherit (gnome) gnomedocutils libgnome libglade gtk libgnomeui scrollkeeper;
|
||||
};
|
||||
|
||||
evopedia = callPackage ../applications/misc/evopedia { };
|
||||
|
||||
keepassx = callPackage ../applications/misc/keepassx { };
|
||||
|
|
Loading…
Reference in a new issue