From 527741d41fd33d819c3d8dccbcdd8acec12f2da7 Mon Sep 17 00:00:00 2001 From: Andrew Dunham Date: Tue, 25 Oct 2022 12:44:17 -0400 Subject: [PATCH] shell.nix: add graphviz Change-Id: Ic25e11a056a7624ebba923d2b87d947e24c41a20 Signed-off-by: Andrew Dunham --- shell.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/shell.nix b/shell.nix index 5157bc2f3..f65559ce0 100644 --- a/shell.nix +++ b/shell.nix @@ -45,9 +45,11 @@ in # - gotools for goimports, a robust formatting tool for Go source code # - gopls, the language server for Go to increase editor integration # - git, the version control program (used in some scripts) + # - graphviz, for 'go tool pprof' buildInputs = [ pkgs.git pkgs.gotools pkgs.gopls tailscale-go + pkgs.graphviz ]; }