summary refs log tree commit diff
path: root/pkgs/applications/networking/sniffers/etherape/default.nix
blob: 9c27139c66d2a7fd495a3a5a1dad6b9dc3374567 (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, gtk2, libpcap, libglade,
libgnomecanvas, popt, itstool }:

stdenv.mkDerivation rec {
  name = "etherape-0.9.17";
  src = fetchurl {
    url = "mirror://sourceforge/etherape/${name}.tar.gz";
    sha256 = "1n66dw9nsl7zz0qfkb74ncgch3lzms2ssw8dq2bzbk3q1ilad3p6";
  };

  nativeBuildInputs = [ itstool pkgconfig ];
  buildInputs = [
    libtool gtk2 libpcap libglade libgnomecanvas popt
  ];

  meta = with stdenv.lib; {
    homepage = http://etherape.sourceforge.net/;
    license = stdenv.lib.licenses.gpl2Plus;
    platforms = with platforms; linux;
    maintainers = with maintainers; [ symphorien ];
  };
}