flent: init at 1.2.2

gstqt5
Manuel Mendez 2018-05-14 11:24:18 -04:00
parent 640c977996
commit b14f809bb1
2 changed files with 29 additions and 0 deletions

View 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 ];
};
}

View File

@ -2332,6 +2332,8 @@ with pkgs;
flashrom = callPackage ../tools/misc/flashrom { };
flent = python3Packages.callPackage ../applications/networking/flent { };
flpsed = callPackage ../applications/editors/flpsed { };
fluentd = callPackage ../tools/misc/fluentd { };