Files
Dark Steveneq 646b892680
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
push sheeet
2025-10-09 14:15:47 +02:00

168 lines
4.6 KiB
Nix

{
lib,
stdenv,
buildGoModule,
fetchFromGitHub,
removeReferencesTo,
tzdata,
wire,
yarn-berry_4,
python3,
jq,
moreutils,
nix-update-script,
nixosTests,
xcbuild,
faketty,
nodejs,
}:
buildGoModule (finalAttrs: {
pname = "grafana";
version = "12.2.0";
subPackages = [
"pkg/cmd/grafana"
"pkg/cmd/grafana-server"
"pkg/cmd/grafana-cli"
];
src = fetchFromGitHub {
owner = "grafana";
repo = "grafana";
rev = "v${finalAttrs.version}";
hash = "sha256-EFqR+du+ZeWih7+s4iVVAiwOvTwbF1pNg1TntkoGCEQ=";
};
# borrowed from: https://github.com/NixOS/nixpkgs/blob/d70d9425f49f9aba3c49e2c389fe6d42bac8c5b0/pkgs/development/tools/analysis/snyk/default.nix#L20-L22
env = {
CYPRESS_INSTALL_BINARY = 0;
PUPPETEER_SKIP_DOWNLOAD = 1;
# The build OOMs on memory constrained aarch64 without this
NODE_OPTIONS = "--max_old_space_size=4096";
};
missingHashes = ./missing-hashes.json;
offlineCache = yarn-berry_4.fetchYarnBerryDeps {
inherit (finalAttrs) src missingHashes;
hash = "sha256-BqlkFgWiU5gruDHjkazNy6GKL2KgpcrwaHXDYNBF9EY=";
};
disallowedRequisites = [ finalAttrs.offlineCache ];
vendorHash = "sha256-yoOs9MngUCfvvK9rPUsXCoSc5LiRs0g66KdINLQzO8Q=";
# Grafana seems to just set it to the latest version available
# nowadays.
# However, while `substituteInPlace --replace-fail` is desirable to keep
# the section up-to-date, this gets increasingly annoying since there's
# an inconsistent 1% with a different version. So we now blindly set all
# `go` directives to whatever nixpkgs provides and make it the maintainer's
# duty to ensure that the mandated
# Go version is compatible with what we provide.
# This is still better than maintaining some list of go.mod files (or exclusions of that)
# where to patch the go version (and where to not do that).
postPatch = ''
find . -name go.mod -or -name "go.work" -type f -exec sed -i -e 's/^go .*/go ${finalAttrs.passthru.go.version}/g' {} \;
'';
proxyVendor = true;
nativeBuildInputs = [
wire
jq
moreutils
removeReferencesTo
# required to run old node-gyp
(python3.withPackages (ps: [ ps.distutils ]))
faketty
nodejs
yarn-berry_4
yarn-berry_4.yarnBerryConfigHook
]
++ lib.optionals stdenv.hostPlatform.isDarwin [ xcbuild.xcbuild ];
# We have to remove this setupHook, otherwise it also runs in the `goModules`
# derivation and fails because `offlineCache` is missing there.
overrideModAttrs = (
old: {
nativeBuildInputs = lib.filter (
x: lib.getName x != (lib.getName yarn-berry_4.yarnBerryConfigHook)
) old.nativeBuildInputs;
}
);
postConfigure = ''
# Generate DI code that's required to compile the package.
# From https://github.com/grafana/grafana/blob/v8.2.3/Makefile#L33-L35
wire gen -tags oss ./pkg/server
wire gen -tags oss ./pkg/cmd/grafana-cli/runner
GOARCH= CGO_ENABLED=0 go generate ./kinds/gen.go
GOARCH= CGO_ENABLED=0 go generate ./public/app/plugins/gen.go
'';
postBuild = ''
# After having built all the Go code, run the JS builders now.
# Workaround for https://github.com/nrwl/nx/issues/22445
faketty yarn run build
yarn run plugins:build-bundled
'';
ldflags = [
"-s"
"-w"
"-X main.version=${finalAttrs.version}"
];
# Tests start http servers which need to bind to local addresses:
# panic: httptest: failed to listen on a port: listen tcp6 [::1]:0: bind: operation not permitted
__darwinAllowLocalNetworking = true;
# On Darwin, files under /usr/share/zoneinfo exist, but fail to open in sandbox:
# TestValueAsTimezone: date_formats_test.go:33: Invalid has err for input "Europe/Amsterdam": operation not permitted
preCheck = ''
export ZONEINFO=${tzdata}/share/zoneinfo
'';
postInstall = ''
mkdir -p $out/share/grafana
cp -r public conf $out/share/grafana/
'';
postFixup = ''
while read line; do
remove-references-to -t $offlineCache "$line"
done < <(find $out -type f -name '*.js.map' -or -name '*.js')
'';
passthru = {
tests = { inherit (nixosTests) grafana; };
updateScript = nix-update-script { };
};
meta = with lib; {
description = "Gorgeous metric viz, dashboards & editors for Graphite, InfluxDB & OpenTSDB";
license = licenses.agpl3Only;
homepage = "https://grafana.com";
maintainers = with maintainers; [
offline
fpletz
globin
ma27
Frostman
ryan4yin
];
platforms = [
"x86_64-linux"
"x86_64-darwin"
"aarch64-linux"
"aarch64-darwin"
];
mainProgram = "grafana-server";
};
})