Skip to content

Commit

Permalink
plow: init at 1.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ecklf committed Feb 15, 2024
1 parent b070866 commit 1122f53
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions pkgs/by-name/pl/plow/package.nix
Original file line number Diff line number Diff line change
@@ -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";
};
}

0 comments on commit 1122f53

Please sign in to comment.