summary refs log tree commit diff
path: root/pkgs/applications/networking/sniffers/etherape/default.nix
blob: 3b9b8cce9e7c795799ae42aa0bca6ad8141e6ad3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ stdenv, fetchurl, pkgconfig, libtool, 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 = [
    pkgconfig libtool gtk libpcap libglade libgnome libgnomeui gnomedocutils
    scrollkeeper libxslt
  ];

  meta = {
    homepage = http://etherape.sourceforge.net/;
    license = "GPLv2+";
    platforms = with stdenv.lib.platforms; linux;
  };
}