about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/networking/mqtt-benchmark/default.nix
blob: bc755247c40c0b1348ca363339ee15619d498f4b (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
{ lib
, buildGoModule
, fetchFromGitHub
}:

buildGoModule rec {
  pname = "mqtt-benchmark";
  version = "0.2.0";

  src = fetchFromGitHub {
    owner = "krylovsk";
    repo = pname;
    rev = "refs/tags/v${version}";
    hash = "sha256-gejLDtJ1geO4eDBapHjXgpc+M2TRGKcv5YzybmIyQSs=";
  };

  vendorHash = "sha256-ZN5tNDIisbhMMOA2bVJnE96GPdZ54HXTneFQewwJmHI=";

  meta = with lib; {
    description = "MQTT broker benchmarking tool";
    homepage = "https://github.com/krylovsk/mqtt-benchmark";
    changelog = "https://github.com/krylovsk/mqtt-benchmark/releases/tag/v${version}";
    license = licenses.asl20;
    maintainers = with maintainers; [ fab ];
    mainProgram = "mqtt-benchmark";
  };
}