c4fb0432ae
GitOrigin-RevId: 3fc1143a04da49a92c3663813c6a0c1e8ccd477f
20 lines
414 B
Nix
20 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;
|
|
}
|