nixpkgs/pkgs/applications/misc/mqtt-bench/default.nix

33 lines
836 B
Nix
Raw Normal View History

{ lib, stdenv, buildGoPackage, fetchFromGitHub, fetchpatch }:
2017-09-20 16:37:19 +00:00
buildGoPackage rec {
pname = "mqtt-bench";
2017-09-20 16:37:19 +00:00
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; {
2017-09-20 16:37:19 +00:00
description = "Mosquitto benchmark tool";
homepage = "https://github.com/takanorig/mqtt-bench";
2017-09-20 16:37:19 +00:00
maintainers = with maintainers; [ disassembler ];
};
}