summary refs log tree commit diff
path: root/doc
diff options
context:
space:
mode:
authorMatthew Mazzanti <matthew.mazzanti@gmail.com>2020-08-01 13:56:47 -0400
committerzowoq <59103226+zowoq@users.noreply.github.com>2020-08-02 09:35:04 +1000
commit2df0fda951e7f8a2f1c83b74df1731ba80922b1a (patch)
tree1d88c8dc9912120ddb45e21554f6f8c02be33592 /doc
parent3c8063df110bf82470b08f39ad9413f931af9a08 (diff)
downloadnixpkgs-2df0fda951e7f8a2f1c83b74df1731ba80922b1a.tar
nixpkgs-2df0fda951e7f8a2f1c83b74df1731ba80922b1a.tar.gz
nixpkgs-2df0fda951e7f8a2f1c83b74df1731ba80922b1a.tar.bz2
nixpkgs-2df0fda951e7f8a2f1c83b74df1731ba80922b1a.tar.lz
nixpkgs-2df0fda951e7f8a2f1c83b74df1731ba80922b1a.tar.xz
nixpkgs-2df0fda951e7f8a2f1c83b74df1731ba80922b1a.tar.zst
nixpkgs-2df0fda951e7f8a2f1c83b74df1731ba80922b1a.zip
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.
Diffstat (limited to 'doc')
-rw-r--r--doc/languages-frameworks/go.xml4
1 files changed, 3 insertions, 1 deletions
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 = [ "." ]; <co xml:id='ex-buildGoModule-2' />
 
+  runVend = true; <co xml:id='ex-buildGoModule-3' />
+
   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 {
     </callout>
     <callout arearefs='ex-buildGoModule-3'>
      <para>
-         <varname>runVend</varname> 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.
+      <varname>runVend</varname> 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.
      </para>
     </callout>
    </calloutlist>