2022-06-03 14:58:07 +02:00
|
|
|
{ depot, pkgs, localSystem, ... }:
|
2020-06-28 02:30:08 +02:00
|
|
|
|
|
|
|
let
|
|
|
|
emptyDerivation = import ./emptyDerivation.nix {
|
|
|
|
inherit pkgs;
|
|
|
|
inherit (pkgs) stdenv;
|
|
|
|
inherit (depot.nix) getBins;
|
2022-06-03 14:58:07 +02:00
|
|
|
system = localSystem;
|
2020-06-28 02:30:08 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|