mirror of
https://github.com/hercules-ci/arion.git
synced 2024-11-22 15:24:26 +03:00
21 lines
446 B
Nix
21 lines
446 B
Nix
{ pkgs ? import ../nix {} }:
|
|
|
|
let
|
|
eval = pkgs.lib.evalModules {
|
|
modules = import ../src/nix/modules.nix;
|
|
};
|
|
options = pkgs.nixosOptionsDoc {
|
|
options = eval.options;
|
|
};
|
|
|
|
in (pkgs.runCommand "agent-options.adoc" { } ''
|
|
cat >$out <<EOF
|
|
= Arion options
|
|
|
|
EOF
|
|
cat ${options.optionsAsciiDoc} >>$out
|
|
'').overrideAttrs (o: {
|
|
# Work around https://github.com/hercules-ci/hercules-ci-agent/issues/168
|
|
allowSubstitutes = true;
|
|
})
|