rio: 0.0.36 -> 0.0.37
[NixPkgs.git] / pkgs / tools / networking / mqtt-benchmark / default.nix
blobbc755247c40c0b1348ca363339ee15619d498f4b
1 { lib
2 , buildGoModule
3 , fetchFromGitHub
4 }:
6 buildGoModule rec {
7   pname = "mqtt-benchmark";
8   version = "0.2.0";
10   src = fetchFromGitHub {
11     owner = "krylovsk";
12     repo = pname;
13     rev = "refs/tags/v${version}";
14     hash = "sha256-gejLDtJ1geO4eDBapHjXgpc+M2TRGKcv5YzybmIyQSs=";
15   };
17   vendorHash = "sha256-ZN5tNDIisbhMMOA2bVJnE96GPdZ54HXTneFQewwJmHI=";
19   meta = with lib; {
20     description = "MQTT broker benchmarking tool";
21     homepage = "https://github.com/krylovsk/mqtt-benchmark";
22     changelog = "https://github.com/krylovsk/mqtt-benchmark/releases/tag/v${version}";
23     license = licenses.asl20;
24     maintainers = with maintainers; [ fab ];
25     mainProgram = "mqtt-benchmark";
26   };