summary refs log tree commit diff
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-05-24 15:32:57 +0200
committerTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-05-25 13:35:54 +0200
commitc4a2f4f4b180287cd20380e02bdbc8dfb401c7f1 (patch)
tree8742181e744002314ca1aefcf421fe2e49578c18
parentb10cb12a93ca25e912d984a8dfc705f65d2de5c1 (diff)
downloadnixpkgs-c4a2f4f4b180287cd20380e02bdbc8dfb401c7f1.tar
nixpkgs-c4a2f4f4b180287cd20380e02bdbc8dfb401c7f1.tar.gz
nixpkgs-c4a2f4f4b180287cd20380e02bdbc8dfb401c7f1.tar.bz2
nixpkgs-c4a2f4f4b180287cd20380e02bdbc8dfb401c7f1.tar.lz
nixpkgs-c4a2f4f4b180287cd20380e02bdbc8dfb401c7f1.tar.xz
nixpkgs-c4a2f4f4b180287cd20380e02bdbc8dfb401c7f1.tar.zst
nixpkgs-c4a2f4f4b180287cd20380e02bdbc8dfb401c7f1.zip
darkstat 3.0.718 -> 3.0.719
- Implement tracking of remote ports: shows which ports the host
  is making outgoing connections to. Long time feature request.
- Bugfix: when the capture interface goes down, exit instead of
  busy-looping forever.
- Fix "clock error" due to machine reboot.
- SIGUSR1 now resets the time and bytes reported on the graphs
  page.
- Account for all IP protocols.
- Change the default ports_max to only twice the default
  ports_keep.
-rw-r--r--pkgs/tools/networking/darkstat/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/networking/darkstat/default.nix b/pkgs/tools/networking/darkstat/default.nix
index af15f6a62e5..bc48bb6cf47 100644
--- a/pkgs/tools/networking/darkstat/default.nix
+++ b/pkgs/tools/networking/darkstat/default.nix
@@ -1,12 +1,12 @@
 { stdenv, fetchurl, libpcap, zlib }:
 
 stdenv.mkDerivation rec {
-  version = "3.0.718";
+  version = "3.0.719";
   name = "darkstat-${version}";
 
   src = fetchurl {
     url = "${meta.homepage}/${name}.tar.bz2";
-    sha256 = "1zxd4bxdfk1pjpcxhrcp54l991g0lljl4sr312nsd7p8yi9kwbv8";
+    sha256 = "1mzddlim6dhd7jhr4smh0n2fa511nvyjhlx76b03vx7phnar1bxf";
   };
 
   buildInputs = [ libpcap zlib ];