From 2df0fda951e7f8a2f1c83b74df1731ba80922b1a Mon Sep 17 00:00:00 2001 From: Matthew Mazzanti Date: Sat, 1 Aug 2020 13:56:47 -0400 Subject: doc: Fix missing callout in go.xml Pull #89453 introduced a bug in the documentation that is preventing the hydra build for nixpkgs-unstable from finishing. I have added the additional option indroduced in that patch (runVend for go modules) and added the callout tag so that the documenation can build again. --- doc/languages-frameworks/go.xml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/doc/languages-frameworks/go.xml b/doc/languages-frameworks/go.xml index 06901449fa2..eee4706e551 100644 --- a/doc/languages-frameworks/go.xml +++ b/doc/languages-frameworks/go.xml @@ -40,6 +40,8 @@ pet = buildGoModule rec { subPackages = [ "." ]; + runVend = true; + meta = with lib; { description = "Simple command-line snippet manager, written in Go"; homepage = "https://github.com/knqyf263/pet"; @@ -66,7 +68,7 @@ pet = buildGoModule rec { - runVend runs the vend command to generate the vendor directory. This is useful if your code depends on c code and go mod tidy does not include the needed sources to build. + runVend runs the vend command to generate the vendor directory. This is useful if your code depends on c code and go mod tidy does not include the needed sources to build. -- cgit 1.4.1