2021-01-19 06:50:56 +00:00
|
|
|
{ lib, stdenv, fetchurl, pkg-config, libtool, gtk3, libpcap, goocanvas2,
|
2018-06-15 13:18:34 +01:00
|
|
|
popt, itstool, libxml2 }:
|
2011-09-22 10:19:33 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2021-07-12 11:51:53 +01:00
|
|
|
pname = "etherape";
|
|
|
|
version = "0.9.20";
|
2011-09-22 10:19:33 +01:00
|
|
|
src = fetchurl {
|
2021-07-12 11:51:53 +01:00
|
|
|
url = "mirror://sourceforge/etherape/etherape-${version}.tar.gz";
|
2021-05-18 11:47:40 +01:00
|
|
|
sha256 = "sha256-9UsQtWOXB1yYofGS4rMIF+ISWBsJKd0DBOFfqOr1n5Y=";
|
2011-09-22 10:19:33 +01:00
|
|
|
};
|
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ itstool pkg-config (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
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://etherape.sourceforge.net/";
|
2021-01-15 13:21:58 +00:00
|
|
|
license = 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
|
|
|
};
|
|
|
|
}
|