2020-06-28 02:30:08 +02:00
|
|
|
{ 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;
|
|
|
|
};
|
|
|
|
|
2022-01-30 17:06:58 +01:00
|
|
|
in
|
|
|
|
{
|
2020-06-28 02:30:08 +02:00
|
|
|
__functor = _: emptyDerivation;
|
|
|
|
inherit tests;
|
|
|
|
}
|