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
61 lines
1.5 KiB
Nix
61 lines
1.5 KiB
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
promscale,
|
|
testers,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "promscale";
|
|
version = "0.17.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "timescale";
|
|
repo = "promscale";
|
|
rev = version;
|
|
hash = "sha256-JizUI9XRzOEHF1kAblYQRYB11z9KWX7od3lPiRN+JNI=";
|
|
};
|
|
|
|
vendorHash = "sha256-lnyKsipr/f9W9LWLb2lizKGLvIbS3XnSlOH1u1B87OY=";
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
"-X github.com/timescale/promscale/pkg/version.Version=${version}"
|
|
"-X github.com/timescale/promscale/pkg/version.CommitHash=${src.rev}"
|
|
];
|
|
preBuild = ''
|
|
# Without this build fails with
|
|
# main module (github.com/timescale/promscale) does not contain package github.com/timescale/promscale/migration-tool/cmd/prom-migrator
|
|
rm -r migration-tool
|
|
'';
|
|
checkPhase = ''
|
|
runHook preCheck
|
|
|
|
# some checks requires access to a docker daemon
|
|
for pkg in $(getGoDirs test | grep -Ev 'testhelpers|upgrade_tests|end_to_end_tests|util'); do
|
|
buildGoDir test $checkFlags "$pkg"
|
|
done
|
|
|
|
runHook postCheck
|
|
'';
|
|
|
|
passthru.tests.version = testers.testVersion {
|
|
package = promscale;
|
|
command = "promscale -version";
|
|
};
|
|
|
|
meta = {
|
|
description = "Open-source analytical platform for Prometheus metrics";
|
|
mainProgram = "promscale";
|
|
homepage = "https://github.com/timescale/promscale";
|
|
changelog = "https://github.com/timescale/promscale/blob/${version}/CHANGELOG.md";
|
|
license = lib.licenses.asl20;
|
|
maintainers = with lib.maintainers; [
|
|
_0x4A6F
|
|
anpin
|
|
];
|
|
};
|
|
}
|