summary refs log tree commit diff
path: root/pkgs/applications/misc/mqtt-bench/default.nix
blob: 657ac9645deb991d4f6b0e12714f10c0bcd1a701 (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
31
32
{ lib, buildGoPackage, fetchFromGitHub, fetchpatch }:

buildGoPackage rec {
  pname = "mqtt-bench";
  version = "0.3.0";
  rev = "v${version}";

  goPackagePath = "github.com/takanorig/mqtt-bench";

  src = fetchFromGitHub {
    inherit rev;
    owner = "takanorig";
    repo = "mqtt-bench";
    sha256 = "03b9ak2j303iwq6abd7j10f2cs2ianwnbflwmyx9g96i7zd74f5m";
  };

  patches = [
    (fetchpatch {
      url = "https://patch-diff.githubusercontent.com/raw/takanorig/mqtt-bench/pull/13.patch";
      name = "mqtt-paho-changes.patch";
      sha256 = "17c8ajrp5dmbsasj6njxrlhy0x08b65fignzm3yccqbhb4ijcvha";
    })
  ];

  goDeps = ./deps.nix;

  meta = with lib; {
    description = "Mosquitto benchmark tool";
    homepage = "https://github.com/takanorig/mqtt-bench";
    maintainers = with maintainers; [ disassembler ];
  };
}