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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
672 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, pkg-config, libtool, gtk3, libpcap, goocanvas2,
2018-06-15 13:18:34 +01:00
popt, itstool, libxml2 }:
stdenv.mkDerivation rec {
pname = "etherape";
version = "0.9.20";
src = fetchurl {
url = "mirror://sourceforge/etherape/etherape-${version}.tar.gz";
2021-05-18 11:47:40 +01:00
sha256 = "sha256-9UsQtWOXB1yYofGS4rMIF+ISWBsJKd0DBOFfqOr1n5Y=";
};
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
];
meta = with lib; {
homepage = "http://etherape.sourceforge.net/";
2021-01-15 13:21:58 +00:00
license = lib.licenses.gpl2Plus;
platforms = with platforms; linux;
maintainers = with maintainers; [ symphorien ];
};
}