mirror of
https://github.com/NixOS/nix.git
synced 2025-11-08 19:46:02 +01:00
19 lines
471 B
Nix
19 lines
471 B
Nix
{
|
|
nixFlake ? builtins.getFlake ("git+file://" + toString ../../..),
|
|
system ? builtins.currentSystem,
|
|
pkgs ? nixFlake.inputs.nixpkgs.legacyPackages.${system},
|
|
stdenv ? "stdenv",
|
|
componentTestsPrefix ? "",
|
|
withInstrumentation ? false,
|
|
withAWS ? null,
|
|
withCurlS3 ? null,
|
|
}@args:
|
|
import ./. (
|
|
args
|
|
// {
|
|
getStdenv = p: p.${stdenv};
|
|
withSanitizers = withInstrumentation;
|
|
withCoverage = withInstrumentation;
|
|
inherit withAWS withCurlS3;
|
|
}
|
|
)
|