nixpkgs/pkgs/applications/networking/sniffers/etherape/default.nix

23 lines
657 B
Nix
Raw Normal View History

2018-06-15 14:18:34 +02:00
{ stdenv, fetchurl, pkgconfig, libtool, gtk3, libpcap, goocanvas2,
popt, itstool, libxml2 }:
stdenv.mkDerivation rec {
2018-06-15 14:18:34 +02:00
name = "etherape-0.9.18";
src = fetchurl {
url = "mirror://sourceforge/etherape/${name}.tar.gz";
2018-06-15 14:18:34 +02:00
sha256 = "0y9cfc5iv5zy82j165i9agf45n1ixka064ykdvpdhb07sr3lzhmv";
};
2018-06-15 14:18:34 +02:00
nativeBuildInputs = [ itstool pkgconfig (stdenv.lib.getBin libxml2) ];
2013-02-23 15:23:18 +01:00
buildInputs = [
2018-06-15 14:18:34 +02:00
libtool gtk3 libpcap goocanvas2 popt
2013-02-23 15:23:18 +01:00
];
meta = with stdenv.lib; {
homepage = http://etherape.sourceforge.net/;
license = stdenv.lib.licenses.gpl2Plus;
platforms = with platforms; linux;
maintainers = with maintainers; [ symphorien ];
};
}