Merge pull request #175931 from aaronjheng/mqtt-bench

mqtt-bench: remove

authored by

Mario Rodas and committed by
GitHub
4846f1db 1923efdd

+1 -55
-32
pkgs/applications/misc/mqtt-bench/default.nix
··· 1 - { lib, buildGoPackage, fetchFromGitHub, fetchpatch }: 2 - 3 - buildGoPackage rec { 4 - pname = "mqtt-bench"; 5 - version = "0.3.0"; 6 - rev = "v${version}"; 7 - 8 - goPackagePath = "github.com/takanorig/mqtt-bench"; 9 - 10 - src = fetchFromGitHub { 11 - inherit rev; 12 - owner = "takanorig"; 13 - repo = "mqtt-bench"; 14 - sha256 = "03b9ak2j303iwq6abd7j10f2cs2ianwnbflwmyx9g96i7zd74f5m"; 15 - }; 16 - 17 - patches = [ 18 - (fetchpatch { 19 - url = "https://patch-diff.githubusercontent.com/raw/takanorig/mqtt-bench/pull/13.patch"; 20 - name = "mqtt-paho-changes.patch"; 21 - sha256 = "17c8ajrp5dmbsasj6njxrlhy0x08b65fignzm3yccqbhb4ijcvha"; 22 - }) 23 - ]; 24 - 25 - goDeps = ./deps.nix; 26 - 27 - meta = with lib; { 28 - description = "Mosquitto benchmark tool"; 29 - homepage = "https://github.com/takanorig/mqtt-bench"; 30 - maintainers = with maintainers; [ disassembler ]; 31 - }; 32 - }
-21
pkgs/applications/misc/mqtt-bench/deps.nix
··· 1 - # This file was generated by https://github.com/kamilchm/go2nix v1.2.1 2 - [ 3 - { 4 - goPackagePath = "github.com/eclipse/paho.mqtt.golang"; 5 - fetch = { 6 - type = "git"; 7 - url = "https://github.com/eclipse/paho.mqtt.golang"; 8 - rev = "65f43bda5f7edbbf6b7533d3a5a13b2c67cf3545"; 9 - sha256 = "1ad136xf78br599ya43j45f8dycjip1k0hkplayy1slg8ckwrhdr"; 10 - }; 11 - } 12 - { 13 - goPackagePath = "golang.org/x/net"; 14 - fetch = { 15 - type = "git"; 16 - url = "https://go.googlesource.com/net"; 17 - rev = "8351a756f30f1297fe94bbf4b767ec589c6ea6d0"; 18 - sha256 = "0b6m579i3wrx1m69mqkdng5gjfssprxx0pg45kzrdi68sh0zr5d1"; 19 - }; 20 - } 21 - ]
+1
pkgs/top-level/aliases.nix
··· 867 867 mpc_cli = mpc-cli; # moved from top-level 2022-01-24 868 868 mpd_clientlib = libmpdclient; # Added 2021-02-11 869 869 mpich2 = throw "'mpich2' has been renamed to/replaced by 'mpich'"; # Converted to throw 2022-02-22 870 + mqtt-bench = throw "mqtt-bench has been dropped due to the lack of maintenance from upstream since 2017"; # Added 2022-06-02 870 871 msf = throw "'msf' has been renamed to/replaced by 'metasploit'"; # Converted to throw 2022-02-22 871 872 multimc = throw "multimc was removed from nixpkgs; use polymc instead (see https://github.com/NixOS/nixpkgs/pull/154051 for more information)"; # Added 2022-01-08 872 873 mumble_git = pkgs.mumble; # Added 2019-08-01
-2
pkgs/top-level/all-packages.nix
··· 19662 19662 19663 19663 mpeg2dec = libmpeg2; 19664 19664 19665 - mqtt-bench = callPackage ../applications/misc/mqtt-bench {}; 19666 - 19667 19665 mqttui = callPackage ../tools/networking/mqttui { 19668 19666 inherit (darwin.apple_sdk.frameworks) Security; 19669 19667 };