a291c8690a
GitOrigin-RevId: e6e19f3d81a982a62e1bba08f0b4f7fdc21b4ea0
21 lines
414 B
Nix
21 lines
414 B
Nix
{ depot, pkgs, ... }:
|
|
|
|
let
|
|
emptyDerivation = import ./emptyDerivation.nix {
|
|
inherit pkgs;
|
|
inherit (pkgs) stdenv;
|
|
inherit (depot.nix) getBins;
|
|
};
|
|
|
|
tests = import ./tests.nix {
|
|
inherit emptyDerivation;
|
|
inherit pkgs;
|
|
inherit (depot.nix) writeExecline getBins;
|
|
inherit (depot.nix.runTestsuite) runTestsuite it assertEq;
|
|
};
|
|
|
|
in
|
|
{
|
|
__functor = _: emptyDerivation;
|
|
inherit tests;
|
|
}
|