summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorSymphorien Gibol <symphorien+git@xlumurb.eu>2018-06-15 14:18:34 +0200
committerSymphorien Gibol <symphorien+git@xlumurb.eu>2018-06-15 14:18:34 +0200
commitcb907b5d5124cf12b97ef0846b29f6930db37815 (patch)
tree0dbdcb447c1836416b78027bf9a540c0a932d0de /pkgs
parent4b649a99d8461c980e7028a693387dc48033c1f7 (diff)
downloadnixpkgs-cb907b5d5124cf12b97ef0846b29f6930db37815.tar
nixpkgs-cb907b5d5124cf12b97ef0846b29f6930db37815.tar.gz
nixpkgs-cb907b5d5124cf12b97ef0846b29f6930db37815.tar.bz2
nixpkgs-cb907b5d5124cf12b97ef0846b29f6930db37815.tar.lz
nixpkgs-cb907b5d5124cf12b97ef0846b29f6930db37815.tar.xz
nixpkgs-cb907b5d5124cf12b97ef0846b29f6930db37815.tar.zst
nixpkgs-cb907b5d5124cf12b97ef0846b29f6930db37815.zip
etherape: 0.9.17 -> 0.9.18
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/networking/sniffers/etherape/default.nix12
-rw-r--r--pkgs/top-level/all-packages.nix4
2 files changed, 7 insertions, 9 deletions
diff --git a/pkgs/applications/networking/sniffers/etherape/default.nix b/pkgs/applications/networking/sniffers/etherape/default.nix
index 9c27139c66d..81c48cff4a0 100644
--- a/pkgs/applications/networking/sniffers/etherape/default.nix
+++ b/pkgs/applications/networking/sniffers/etherape/default.nix
@@ -1,16 +1,16 @@
-{ stdenv, fetchurl, pkgconfig, libtool, gtk2, libpcap, libglade,
-libgnomecanvas, popt, itstool }:
+{ stdenv, fetchurl, pkgconfig, libtool, gtk3, libpcap, goocanvas2,
+popt, itstool, libxml2 }:
 
 stdenv.mkDerivation rec {
-  name = "etherape-0.9.17";
+  name = "etherape-0.9.18";
   src = fetchurl {
     url = "mirror://sourceforge/etherape/${name}.tar.gz";
-    sha256 = "1n66dw9nsl7zz0qfkb74ncgch3lzms2ssw8dq2bzbk3q1ilad3p6";
+    sha256 = "0y9cfc5iv5zy82j165i9agf45n1ixka064ykdvpdhb07sr3lzhmv";
   };
 
-  nativeBuildInputs = [ itstool pkgconfig ];
+  nativeBuildInputs = [ itstool pkgconfig (stdenv.lib.getBin libxml2) ];
   buildInputs = [
-    libtool gtk2 libpcap libglade libgnomecanvas popt
+    libtool gtk3 libpcap goocanvas2 popt
   ];
 
   meta = with stdenv.lib; {
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index d652824d8b9..f21f7ca1a5a 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -15750,9 +15750,7 @@ with pkgs;
 
   eterm = callPackage ../applications/misc/eterm { };
 
-  etherape = callPackage ../applications/networking/sniffers/etherape {
-    inherit (gnome2) libgnomecanvas libglade;
-  };
+  etherape = callPackage ../applications/networking/sniffers/etherape { };
 
   evilvte = callPackage ../applications/misc/evilvte {
     configH = config.evilvte.config or "";