commit
0e2dd13f43
27
pkgs/applications/networking/flent/default.nix
Normal file
27
pkgs/applications/networking/flent/default.nix
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
{ stdenv, buildPythonApplication, fetchFromGitHub, matplotlib, netperf, procps, pyqt5 }:
|
||||||
|
|
||||||
|
buildPythonApplication rec {
|
||||||
|
pname = "flent";
|
||||||
|
version = "1.2.2";
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "tohojo";
|
||||||
|
repo = "flent";
|
||||||
|
rev = version;
|
||||||
|
sha256 = "0rl4ahynl6ymw7r04vpg9p90pplrxc41rjlzvm0swxsvpw40yvkm";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ netperf ];
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
matplotlib
|
||||||
|
procps
|
||||||
|
pyqt5
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "The FLExible Network Tester";
|
||||||
|
homepage = https://flent.org;
|
||||||
|
license = licenses.gpl3;
|
||||||
|
|
||||||
|
maintainers = [ maintainers.mmlb ];
|
||||||
|
};
|
||||||
|
}
|
@ -2338,6 +2338,8 @@ with pkgs;
|
|||||||
|
|
||||||
flashrom = callPackage ../tools/misc/flashrom { };
|
flashrom = callPackage ../tools/misc/flashrom { };
|
||||||
|
|
||||||
|
flent = python3Packages.callPackage ../applications/networking/flent { };
|
||||||
|
|
||||||
flpsed = callPackage ../applications/editors/flpsed { };
|
flpsed = callPackage ../applications/editors/flpsed { };
|
||||||
|
|
||||||
fluentd = callPackage ../tools/misc/fluentd { };
|
fluentd = callPackage ../tools/misc/fluentd { };
|
||||||
|
Loading…
Reference in New Issue
Block a user