forked from DGNum/colmena
16 lines
497 B
Nix
16 lines
497 B
Nix
{
|
|
apply = import ./apply {};
|
|
apply-streaming = import ./apply { evaluator = "streaming"; };
|
|
apply-local = import ./apply-local {};
|
|
build-on-target = import ./build-on-target {};
|
|
exec = import ./exec {};
|
|
flakes = import ./flakes {};
|
|
flakes-streaming = import ./flakes { evaluator = "streaming"; };
|
|
parallel = import ./parallel {};
|
|
|
|
apply-stable = let
|
|
test = import ./apply { pkgs = import ./nixpkgs-stable.nix; };
|
|
in test.override (old: {
|
|
name = "apply-stable";
|
|
});
|
|
}
|