blob: d9ae69a737df585ca4a3b2bf3b8b374482a356bc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
{
lib,
buildGoModule,
fetchFromGitHub,
promscale,
testers,
}:
buildGoModule (finalAttrs: {
pname = "promscale";
version = "0.17.0";
src = fetchFromGitHub {
owner = "timescale";
repo = "promscale";
rev = finalAttrs.version;
hash = "sha256-JizUI9XRzOEHF1kAblYQRYB11z9KWX7od3lPiRN+JNI=";
};
vendorHash = "sha256-lnyKsipr/f9W9LWLb2lizKGLvIbS3XnSlOH1u1B87OY=";
ldflags = [
"-s"
"-w"
"-X github.com/timescale/promscale/pkg/version.Version=${finalAttrs.version}"
"-X github.com/timescale/promscale/pkg/version.CommitHash=${finalAttrs.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/${finalAttrs.version}/CHANGELOG.md";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [
_0x4A6F
anpin
];
};
})
|