mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-17 14:19:58 +03:00
ff323ed355
via: `find pkgs/ -type f -exec sed -i 's/vendorSha256 = "sha256/vendorHash = "sha256/' {};`
28 lines
755 B
Nix
28 lines
755 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.";
|
|
license = lib.licenses.asl20;
|
|
maintainers = with lib.maintainers; [ brianmcgee ];
|
|
};
|
|
}
|