depot/third_party/nixpkgs/pkgs/by-name/pl/plow/package.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

30 lines
838 B
Nix

{ 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 = "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";
};
}