2018-05-31 22:33:48 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, libtool, gtk2, libpcap, libglade,
|
|
|
|
libgnomecanvas, popt, itstool }:
|
2011-09-22 10:19:33 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-05-31 22:33:48 +01:00
|
|
|
name = "etherape-0.9.17";
|
2011-09-22 10:19:33 +01:00
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/etherape/${name}.tar.gz";
|
2018-05-31 22:33:48 +01:00
|
|
|
sha256 = "1n66dw9nsl7zz0qfkb74ncgch3lzms2ssw8dq2bzbk3q1ilad3p6";
|
2011-09-22 10:19:33 +01:00
|
|
|
};
|
|
|
|
|
2018-05-31 22:33:48 +01:00
|
|
|
nativeBuildInputs = [ itstool pkgconfig ];
|
2013-02-23 14:23:18 +00:00
|
|
|
buildInputs = [
|
2018-05-31 22:33:48 +01:00
|
|
|
libtool gtk2 libpcap libglade libgnomecanvas popt
|
2013-02-23 14:23:18 +00:00
|
|
|
];
|
2011-09-22 10:19:33 +01:00
|
|
|
|
2018-05-31 22:33:48 +01:00
|
|
|
meta = with stdenv.lib; {
|
2011-09-22 10:19:33 +01:00
|
|
|
homepage = http://etherape.sourceforge.net/;
|
2014-06-19 05:19:00 +01:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
2018-05-31 22:33:48 +01:00
|
|
|
platforms = with platforms; linux;
|
|
|
|
maintainers = with maintainers; [ symphorien ];
|
2011-09-22 10:19:33 +01:00
|
|
|
};
|
|
|
|
}
|