package.nix (642B)
1 { 2 lib, 3 fetchFromGitHub, 4 buildGoModule, 5 }: 6 7 buildGoModule (finalAttrs: { 8 pname = "mqtt-stresser"; 9 version = "4"; 10 11 __structuredAttrs = true; 12 13 src = fetchFromGitHub { 14 owner = "inovex"; 15 repo = "mqtt-stresser"; 16 tag = "v${finalAttrs.version}"; 17 hash = "sha256-4xcoqsbTDxpaR1T7KgkqqT7iOUh8k8GFHYTPoapfjJQ="; 18 }; 19 20 vendorHash = null; 21 22 ldflags = [ "-s" ]; 23 24 meta = { 25 description = "Load testing tool to stress MQTT message broker"; 26 homepage = "https://github.com/inovex/mqtt-stresser"; 27 license = lib.licenses.asl20; 28 maintainers = [ lib.maintainers.sikmir ]; 29 mainProgram = "mqtt-stresser"; 30 }; 31 })
