2018-06-15 05:18:34 -07:00
|
|
|
{ stdenv, fetchurl, pkgconfig, libtool, gtk3, libpcap, goocanvas2,
|
|
|
|
popt, itstool, libxml2 }:
|
2011-09-22 02:19:33 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2020-05-20 23:43:23 -07:00
|
|
|
name = "etherape-0.9.19";
|
2011-09-22 02:19:33 -07:00
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/etherape/${name}.tar.gz";
|
2020-05-20 23:43:23 -07:00
|
|
|
sha256 = "0w63vg2q6if3wvy2md66in8b6cdw9q40hny5xy6yrxky58l4kmg7";
|
2011-09-22 02:19:33 -07:00
|
|
|
};
|
|
|
|
|
2018-06-15 05:18:34 -07:00
|
|
|
nativeBuildInputs = [ itstool pkgconfig (stdenv.lib.getBin libxml2) ];
|
2013-02-23 06:23:18 -08:00
|
|
|
buildInputs = [
|
2018-06-15 05:18:34 -07:00
|
|
|
libtool gtk3 libpcap goocanvas2 popt
|
2013-02-23 06:23:18 -08:00
|
|
|
];
|
2011-09-22 02:19:33 -07:00
|
|
|
|
2018-05-31 14:33:48 -07:00
|
|
|
meta = with stdenv.lib; {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "http://etherape.sourceforge.net/";
|
2014-06-18 21:19:00 -07:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
2018-05-31 14:33:48 -07:00
|
|
|
platforms = with platforms; linux;
|
|
|
|
maintainers = with maintainers; [ symphorien ];
|
2011-09-22 02:19:33 -07:00
|
|
|
};
|
|
|
|
}
|