Merge pull request #288643 from ecklf/ecklf/add-plow

plow: init at 1.3.1
This commit is contained in:
Pol Dellaiera 2024-02-15 23:33:07 +01:00 committed by GitHub
commit eb0e4642b9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 36 additions and 0 deletions

View File

@ -5332,6 +5332,12 @@
githubId = 7875;
name = "Rommel Martinez";
};
ecklf = {
email = "ecklf@icloud.com";
github = "ecklf";
githubId = 8146736;
name = "Florentin Eckl";
};
eclairevoyant = {
github = "eclairevoyant";
githubId = 848000;

View File

@ -0,0 +1,30 @@
{ lib, buildGoModule, fetchFromGitHub, testers, plow }:
buildGoModule rec {
pname = "plow";
version = "1.3.1";
src = fetchFromGitHub {
owner = "six-ddc";
repo = "plow";
rev = "refs/tags/v${version}";
hash = "sha256-TynFq7e4MtZlA5SmGMybhmCVw67yHYgZWffQjuyhTDA=";
};
vendorHash = "sha256-t2lBPyCn8bu9hLsWmaCGir9egbX0mQR+8kB0RfY7nHE=";
ldflags = [ "-s" "-w" ];
passthru.tests.version = testers.testVersion {
package = plow;
};
meta = with lib; {
description = "A high-performance HTTP benchmarking tool that includes a real-time web UI and terminal display";
homepage = "https://github.com/six-ddc/plow";
changelog = "https://github.com/six-ddc/plow/releases/tag/v${version}";
license = licenses.asl20;
maintainers = with maintainers; [ ecklf ];
mainProgram = "plow";
};
}