mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-23 20:44:12 +00:00
Merge pull request #209457 from r-ryantm/auto-update/bpfmon
bpfmon: 2.50 -> 2.51
This commit is contained in:
commit
055830fad8
@ -1,22 +1,34 @@
|
||||
{ stdenv, fetchFromGitHub, lib, libpcap, yascreen }:
|
||||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
, libpcap
|
||||
, yascreen
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "bpfmon";
|
||||
version = "2.50";
|
||||
version = "2.51";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "bbonev";
|
||||
repo = "bpfmon";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-x4EuGZBtg45bD9q1B/6KwjDRXXeRsdFmRllREsech+E=";
|
||||
rev = "refs/tags/v${version}";
|
||||
hash = "sha256-EGRxWq94BWceYXunzcOpMQv4g7cMjVCEWMR0ULGN2Jg=";
|
||||
};
|
||||
|
||||
buildInputs = [ libpcap yascreen ];
|
||||
makeFlags = [ "PREFIX=$(out)" ];
|
||||
buildInputs = [
|
||||
libpcap
|
||||
yascreen
|
||||
];
|
||||
|
||||
makeFlags = [
|
||||
"PREFIX=$(out)"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "BPF based visual packet rate monitor";
|
||||
homepage = "https://github.com/bbonev/bpfmon";
|
||||
changelog = "https://github.com/bbonev/bpfmon/releases/tag/v${version}";
|
||||
maintainers = with maintainers; [ arezvov ];
|
||||
license = licenses.gpl2Plus;
|
||||
platforms = platforms.linux;
|
||||
|
Loading…
Reference in New Issue
Block a user