bpfmon: init at 2.50

main
Alexander Rezvov 3 years ago
parent 5e6aaaf238
commit 04f9596405
  1. 24
      pkgs/os-specific/linux/bpfmon/default.nix
  2. 2
      pkgs/top-level/all-packages.nix

@ -0,0 +1,24 @@
{ stdenv, fetchFromGitHub, lib, libpcap, yascreen }:
stdenv.mkDerivation rec {
pname = "bpfmon";
version = "2.50";
src = fetchFromGitHub {
owner = "bbonev";
repo = "bpfmon";
rev = "v${version}";
sha256 = "sha256-x4EuGZBtg45bD9q1B/6KwjDRXXeRsdFmRllREsech+E=";
};
buildInputs = [ libpcap yascreen ];
makeFlags = [ "PREFIX=$(out)" ];
meta = with lib; {
description = "BPF based visual packet rate monitor";
homepage = "https://github.com/bbonev/bpfmon";
maintainers = with maintainers; [ arezvov ];
license = licenses.gpl2Plus;
platforms = platforms.linux;
};
}

@ -21316,6 +21316,8 @@ with pkgs;
bolt = callPackage ../os-specific/linux/bolt { };
bpfmon = callPackage ../os-specific/linux/bpfmon { };
bridge-utils = callPackage ../os-specific/linux/bridge-utils { };
busybox = callPackage ../os-specific/linux/busybox { };

Loading…
Cancel
Save