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

32 lines
689 B
Nix
Raw Permalink Normal View History

2025-03-11 10:10:33 +01:00
{
lib,
fetchFromGitHub,
buildGoModule,
2025-04-01 09:51:01 +02:00
nix-update-script,
2025-03-11 10:10:33 +01:00
}:
buildGoModule rec {
pname = "plan-exporter";
version = "0.0.6";
2025-04-01 09:51:01 +02:00
2025-03-11 10:10:33 +01:00
src = fetchFromGitHub {
owner = "agneum";
repo = "plan-exporter";
tag = "v${version}";
hash = "sha256-Csp57wmkDA8b05hmKbk1+bGtORFgNls7I01A0irTKao=";
};
2025-04-01 09:51:01 +02:00
2025-03-11 10:10:33 +01:00
vendorHash = null;
2025-04-01 09:51:01 +02:00
passthru = {
updateScript = nix-update-script { };
};
2025-03-11 10:10:33 +01:00
meta = {
description = "Query plan exporter for psql";
homepage = "https://github.com/agneum/plan-exporter";
changelog = "https://github.com/agneum/plan-exporter/releases/tag/v${version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ autra ];
};
}