mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
flent: init at 1.2.2
This commit is contained in:
parent
640c977996
commit
b14f809bb1
2 changed files with 29 additions and 0 deletions
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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue