Work around Nix enforcing cross-system fetch bug
https://github.com/hercules-ci/hercules-ci-agent/issues/168
This commit is contained in:
parent
dda66e104e
commit
c38c374fa6
1 changed files with 5 additions and 2 deletions
|
@ -8,8 +8,11 @@ let
|
||||||
options = eval.options;
|
options = eval.options;
|
||||||
};
|
};
|
||||||
|
|
||||||
in pkgs.writeText "agent-options" ''
|
in (pkgs.writeText "agent-options" ''
|
||||||
= Arion options
|
= Arion options
|
||||||
|
|
||||||
${options.optionsAsciiDoc}
|
${options.optionsAsciiDoc}
|
||||||
''
|
'').overrideAttrs (o: {
|
||||||
|
# Work around https://github.com/hercules-ci/hercules-ci-agent/issues/168
|
||||||
|
allowSubstitutes = true;
|
||||||
|
})
|
||||||
|
|
Loading…
Reference in a new issue