Skip to content

Commit

Permalink
kubemq-community: init at 2.2.12
Browse files Browse the repository at this point in the history
  • Loading branch information
brianmcgee committed Mar 14, 2022
1 parent 4239130 commit cfa288b
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
27 changes: 27 additions & 0 deletions pkgs/servers/kubemq-community/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{ lib, buildGoModule, fetchFromGitHub }:

buildGoModule rec {
pname = "kubemq-community";
version = "2.2.12";
src = fetchFromGitHub {
owner = "kubemq-io";
repo = pname;
rev = "v${version}";
sha256 = "06n3avcqknqzf9y03xqcsg36pwcha29j2psp9xsnir7hrx66zww8";
};

CGO_ENABLED=0;

ldflags=[ "-w" "-s" "-X main.version=${version}" ];

doCheck = false; # grpc tests are flaky

vendorSha256 = "1sh0dzz8z065964k2gzkzw9p3db3rcf6mv901zym0wqm4p71045w";

meta = {
homepage = "https://github.com/kubemq-io/kubemq-community";
description = "KubeMQ Community is the open-source version of KubeMQ, the Kubernetes native message broker.";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ brianmcgee ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -15264,6 +15264,8 @@ with pkgs;

kubei = callPackage ../tools/security/kubei { };

kubemq-community = callPackage ../servers/kubemq-community { };

kubeone = callPackage ../applications/networking/cluster/kubeone { };

kubeprompt = callPackage ../development/tools/kubeprompt { };
Expand Down

0 comments on commit cfa288b

Please sign in to comment.