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.
This commit is contained in:
parent
3c8063df11
commit
2df0fda951
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue