Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
47 lines
1019 B
Nix
47 lines
1019 B
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "honeycomb-refinery";
|
|
version = "1.19.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "honeycombio";
|
|
repo = "refinery";
|
|
rev = "v${version}";
|
|
hash = "sha256-SU9JbyUuBMqPw4XcoF5s8CgBn7+V/rHBAwpXJk373jg=";
|
|
};
|
|
|
|
NO_REDIS_TEST = true;
|
|
|
|
patches = [
|
|
# Allows turning off the one test requiring a Redis service during build.
|
|
# We could in principle implement that, but it's significant work to little
|
|
# payoff.
|
|
./0001-add-NO_REDIS_TEST-env-var-that-disables-Redis-requir.patch
|
|
];
|
|
|
|
excludedPackages = [ "cmd/test_redimem" ];
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
"-X main.BuildID=${version}"
|
|
];
|
|
|
|
vendorHash = "sha256-0M05JGLdmKivRTN8ZdhAm+JtXTlYAC31wFS82g3NenI=";
|
|
|
|
doCheck = true;
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/honeycombio/refinery";
|
|
description = "Tail-sampling proxy for OpenTelemetry";
|
|
license = licenses.asl20;
|
|
maintainers = [ ];
|
|
mainProgram = "refinery";
|
|
};
|
|
}
|