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

23 lines
670 B
Nix
Raw Normal View History

2013-02-23 15:23:18 +01:00
{ stdenv, fetchurl, pkgconfig, libtool, gtk, libpcap, libglade, libgnome, libgnomeui
, gnomedocutils, scrollkeeper, libxslt }:
stdenv.mkDerivation rec {
2013-12-15 11:38:46 +01:00
name = "etherape-0.9.13";
src = fetchurl {
url = "mirror://sourceforge/etherape/${name}.tar.gz";
2013-12-15 11:38:46 +01:00
sha256 = "1xq93k1slyak8mgwrw5kymq0xn0kl8chvfcvaablgki4p0l2lg9a";
};
configureFlags = [ "--disable-scrollkeeper" ];
2013-02-23 15:23:18 +01:00
buildInputs = [
pkgconfig libtool gtk libpcap libglade libgnome libgnomeui gnomedocutils
scrollkeeper libxslt
];
meta = {
homepage = http://etherape.sourceforge.net/;
license = stdenv.lib.licenses.gpl2Plus;
platforms = with stdenv.lib.platforms; linux;
};
}