nixpkgs/pkgs/servers/monitoring/phlare/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

41 lines
1.1 KiB
Nix
Raw Normal View History

2022-12-08 12:42:14 +00:00
{ lib, stdenv, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "phlare";
2023-02-25 01:25:48 +00:00
version = "0.5.1";
2022-12-08 12:42:14 +00:00
src = fetchFromGitHub {
rev = "v${version}";
owner = "grafana";
repo = "phlare";
2023-02-25 01:25:48 +00:00
sha256 = "sha256-q7y3sZMI1Kk7Ar0ER8RoU1Y7xAhFh89y/mzESjLrxcM=";
2022-12-08 12:42:14 +00:00
};
proxyVendor = true;
2023-02-25 01:25:48 +00:00
vendorHash = "sha256-Oz1qV+3sB0pOWGEMtp7mgMR9Ljd0rd9oa6NJO2azTJg=";
2022-12-08 12:42:14 +00:00
ldflags = let
prefix = "github.com/grafana/phlare/pkg/util/build";
in [
"-s" "-w"
2023-02-25 01:25:48 +00:00
# https://github.com/grafana/phlare/blob/v0.5.1/Makefile#L32
2022-12-08 12:42:14 +00:00
"-X ${prefix}.Version=${version}"
"-X ${prefix}.Branch=v${version}"
"-X ${prefix}.Revision=v${version}"
"-X ${prefix}.BuildUser=nix"
"-X ${prefix}.BuildDate=1980-01-01T00:00:00Z"
];
subPackages = [
"cmd/phlare"
"cmd/profilecli"
];
meta = with lib; {
description = "Grafana Phlare is an open source database that provides fast, scalable, highly available, and efficient storage and querying of profiling data.";
license = licenses.agpl3;
homepage = "https://grafana.com/oss/phlare";
maintainers = with maintainers; [ cathalmullan ];
};
}