summaryrefslogtreecommitdiffstats
path: root/docs/releasing.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/releasing.md')
-rw-r--r--docs/releasing.md7
1 files changed, 7 insertions, 0 deletions
diff --git a/docs/releasing.md b/docs/releasing.md
index 4c6583c..d77b6dd 100644
--- a/docs/releasing.md
+++ b/docs/releasing.md
@@ -26,3 +26,10 @@ Nix adds new and interesting complexities to the release.
6. Update the version and hash in nixpkgs/pkgs/tools/system/gotop/default.nix
8. In docker, install & run vgo2nix to update deps.nix
7. nix-build -A gotop
+
+
+For plugin development:
+```
+V=$(git show -s --format=%cI HEAD | cut -b -19 | tr -cd '[:digit:]')-$(git rev-parse HEAD | cut -b -12)
+go build -ldflags "-X main.Version=$V" -o gotop ./cmd/gotop
+```