summary refs log tree commit diff
path: root/pkgs/applications/networking/sniffers/etherape/default.nix
blob: a51f65cbccb09d28ed73c4d10fd16d9cd255d980 (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.13";
  src = fetchurl {
    url = "mirror://sourceforge/etherape/${name}.tar.gz";
    sha256 = "1xq93k1slyak8mgwrw5kymq0xn0kl8chvfcvaablgki4p0l2lg9a";
  };

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