Make the CA tests actuall test CA derivations

Fix a mistake in config.nix that was preventing
`NIX_TESTS_CA_BY_DEFAULT` from having any meaningful effect
This commit is contained in:
regnat 2021-06-23 17:36:50 +02:00
parent 0a535dd5ac
commit fd3f5e9085
1 changed files with 2 additions and 2 deletions

View File

@ -22,6 +22,6 @@ rec {
builder = shell;
args = ["-e" args.builder or (builtins.toFile "builder-${args.name}.sh" "if [ -e .attrs.sh ]; then source .attrs.sh; fi; eval \"$buildCommand\"")];
PATH = path;
} // removeAttrs args ["builder" "meta"])
} // caArgs // removeAttrs args ["builder" "meta"])
// { meta = args.meta or {}; };
} // caArgs
}