nixpkgs/pkgs/servers/monitoring/grafana-agent/default.nix

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

110 lines
3 KiB
Nix
Raw Normal View History

2023-05-01 18:10:49 +00:00
{ lib
, buildGoModule
, fetchFromGitHub
, fetchYarnDeps
, fixup_yarn_lock
2023-05-01 18:10:49 +00:00
, grafana-agent
, nixosTests
, nodejs
2023-05-01 18:10:49 +00:00
, stdenv
, systemd
, testers
, yarn
2023-05-01 18:10:49 +00:00
}:
2021-01-16 19:57:40 +00:00
buildGoModule rec {
pname = "grafana-agent";
version = "0.36.2";
2021-01-16 19:57:40 +00:00
src = fetchFromGitHub {
owner = "grafana";
repo = "agent";
rev = "v${version}";
hash = "sha256-c8eay3lwAVqodw6MPU02tSQ+8D0+qywCI+U6bfJVk5A=";
2021-01-16 19:57:40 +00:00
};
vendorHash = "sha256-kz/yogvKqUGP+TQjrzophA4qQ+Qf32cV/CuyNuM9fzM=";
proxyVendor = true; # darwin/linux hash mismatch
2022-11-02 11:03:49 +00:00
frontendYarnOfflineCache = fetchYarnDeps {
yarnLock = src + "/web/ui/yarn.lock";
hash = "sha256-sUFxuliLupGEJY1xFA2V4W2gwHxtUgst3Vrywh1owAo=";
};
2022-11-02 11:03:49 +00:00
ldflags = let
prefix = "github.com/grafana/agent/pkg/build";
in [
"-s" "-w"
# https://github.com/grafana/agent/blob/d672eba4ca8cb010ad8a9caef4f8b66ea6ee3ef2/Makefile#L125
"-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"
];
2021-07-10 21:22:14 +00:00
nativeBuildInputs = [ fixup_yarn_lock nodejs yarn ];
tags = [
"builtinassets"
"nonetwork"
"nodocker"
"promtail_journal_enabled"
2021-07-10 21:22:14 +00:00
];
2021-01-16 19:57:40 +00:00
2022-11-02 11:03:49 +00:00
subPackages = [
"cmd/grafana-agent"
"cmd/grafana-agentctl"
"web/ui"
2022-11-02 11:03:49 +00:00
];
preBuild = ''
export HOME="$TMPDIR"
pushd web/ui
fixup_yarn_lock yarn.lock
yarn config --offline set yarn-offline-mirror $frontendYarnOfflineCache
yarn install --offline --frozen-lockfile --ignore-platform --ignore-scripts --no-progress --non-interactive
patchShebangs node_modules
yarn --offline run build
popd
'';
# do not pass preBuild to go-modules.drv, as it would otherwise fail to build.
# but even if it would work, it simply isn't needed in that scope.
overrideModAttrs = (_: {
preBuild = null;
});
2021-01-16 19:57:40 +00:00
# uses go-systemd, which uses libsystemd headers
# https://github.com/coreos/go-systemd/issues/351
env.NIX_CFLAGS_COMPILE = toString (lib.optionals stdenv.isLinux [ "-I${lib.getDev systemd}/include" ]);
2021-01-16 19:57:40 +00:00
# go-systemd uses libsystemd under the hood, which does dlopen(libsystemd) at
# runtime.
# Add to RUNPATH so it can be found.
2022-12-07 13:50:14 +00:00
postFixup = lib.optionalString stdenv.isLinux ''
2021-01-16 19:57:40 +00:00
patchelf \
--set-rpath "${lib.makeLibraryPath [ (lib.getLib systemd) ]}:$(patchelf --print-rpath $out/bin/grafana-agent)" \
$out/bin/grafana-agent
2021-01-16 19:57:40 +00:00
'';
2023-05-01 18:10:49 +00:00
passthru.tests = {
inherit (nixosTests) grafana-agent;
version = testers.testVersion {
inherit version;
command = "${lib.getExe grafana-agent} --version";
package = grafana-agent;
};
};
2022-06-15 10:24:46 +00:00
2023-06-21 16:53:44 +00:00
meta = {
2021-01-16 19:57:40 +00:00
description = "A lightweight subset of Prometheus and more, optimized for Grafana Cloud";
2023-06-21 16:53:44 +00:00
license = lib.licenses.asl20;
2021-01-16 19:57:40 +00:00
homepage = "https://grafana.com/products/cloud";
2023-06-21 16:53:44 +00:00
changelog = "https://github.com/grafana/agent/blob/${src.rev}/CHANGELOG.md";
maintainers = with lib.maintainers; [ flokli emilylange ];
mainProgram = "grafana-agent";
2021-01-16 19:57:40 +00:00
};
}