mirror of
https://github.com/NixOS/nix.git
synced 2025-11-14 14:32:42 +01:00
This cleans up the work done in 8c2828387. Now that #13752 has landed,
there's no need to test configurations without AWS auth in CI.
16 lines
400 B
Nix
16 lines
400 B
Nix
{
|
|
nixFlake ? builtins.getFlake ("git+file://" + toString ../../..),
|
|
system ? builtins.currentSystem,
|
|
pkgs ? nixFlake.inputs.nixpkgs.legacyPackages.${system},
|
|
stdenv ? "stdenv",
|
|
componentTestsPrefix ? "",
|
|
withInstrumentation ? false,
|
|
}@args:
|
|
import ./. (
|
|
args
|
|
// {
|
|
getStdenv = p: p.${stdenv};
|
|
withSanitizers = withInstrumentation;
|
|
withCoverage = withInstrumentation;
|
|
}
|
|
)
|