2018-06-15 13:18:34 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, libtool, gtk3, libpcap, goocanvas2,
|
|
|
|
popt, itstool, libxml2 }:
|
2011-09-22 10:19:33 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2020-05-21 07:43:23 +01:00
|
|
|
name = "etherape-0.9.19";
|
2011-09-22 10:19:33 +01:00
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/etherape/${name}.tar.gz";
|
2020-05-21 07:43:23 +01:00
|
|
|
sha256 = "0w63vg2q6if3wvy2md66in8b6cdw9q40hny5xy6yrxky58l4kmg7";
|
2011-09-22 10:19:33 +01:00
|
|
|
};
|
|
|
|
|
2018-06-15 13:18:34 +01:00
|
|
|
nativeBuildInputs = [ itstool pkgconfig (stdenv.lib.getBin libxml2) ];
|
2013-02-23 14:23:18 +00:00
|
|
|
buildInputs = [
|
2018-06-15 13:18:34 +01:00
|
|
|
libtool gtk3 libpcap goocanvas2 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; {
|
2020-04-01 02:11:51 +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
|
|
|
};
|
|
|
|
}
|