Skip to content

Commit 5ffe3e7

Browse files
plan-exporter: add update script (#395108)
2 parents 9e8b515 + 8f60574 commit 5ffe3e7

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

pkgs/by-name/pl/plan-exporter/package.nix

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,25 @@
22
lib,
33
fetchFromGitHub,
44
buildGoModule,
5+
nix-update-script,
56
}:
67
buildGoModule rec {
78
pname = "plan-exporter";
89
version = "0.0.6";
10+
911
src = fetchFromGitHub {
1012
owner = "agneum";
1113
repo = "plan-exporter";
1214
tag = "v${version}";
1315
hash = "sha256-Csp57wmkDA8b05hmKbk1+bGtORFgNls7I01A0irTKao=";
1416
};
17+
1518
vendorHash = null;
1619

20+
passthru = {
21+
updateScript = nix-update-script { };
22+
};
23+
1724
meta = {
1825
description = "Query plan exporter for psql";
1926
homepage = "https://github.com/agneum/plan-exporter";

0 commit comments

Comments
 (0)