about summary refs log tree commit diff
path: root/pkgs/by-name/pl/plow/package.nix
blob: 981787d16d94d0b66476ea1e80b252d87b9c5f2e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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 = "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";
  };
}