mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 04:02:10 +00:00
ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
29 lines
793 B
Nix
29 lines
793 B
Nix
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
buildGoModule rec {
|
|
pname = "kubemq-community";
|
|
version = "2.3.7";
|
|
src = fetchFromGitHub {
|
|
owner = "kubemq-io";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-oAo/O3T3wtfCumT2kjoyXKfCFHijVzSmxhslaKaeF3Y=";
|
|
};
|
|
|
|
CGO_ENABLED=0;
|
|
|
|
ldflags=[ "-w" "-s" "-X main.version=${version}" ];
|
|
|
|
doCheck = false; # grpc tests are flaky
|
|
|
|
vendorHash = "sha256-L1BxxSI2t0qWXizge+X3BrpGPaSy5Dk81vKuI0N5Ywg=";
|
|
|
|
meta = {
|
|
homepage = "https://github.com/kubemq-io/kubemq-community";
|
|
description = "KubeMQ Community is the open-source version of KubeMQ, the Kubernetes native message broker.";
|
|
mainProgram = "kubemq-community";
|
|
license = lib.licenses.asl20;
|
|
maintainers = with lib.maintainers; [ brianmcgee ];
|
|
};
|
|
}
|