2020-06-28 03:14:11 +02:00
|
|
|
{ depot, pkgs, lib, ... }:
|
|
|
|
let
|
|
|
|
runExecline = import ./runExecline.nix {
|
|
|
|
inherit (pkgs) stdenv;
|
|
|
|
inherit (depot.nix) escapeExecline getBins;
|
|
|
|
inherit pkgs lib;
|
|
|
|
};
|
|
|
|
|
|
|
|
tests = import ./tests.nix {
|
|
|
|
inherit runExecline;
|
2020-06-28 04:52:08 +02:00
|
|
|
inherit (depot.nix) getBins writeScript;
|
2020-06-28 03:14:11 +02:00
|
|
|
inherit (pkgs) stdenv coreutils;
|
|
|
|
inherit pkgs;
|
|
|
|
};
|
|
|
|
|
|
|
|
in {
|
|
|
|
__functor = _: runExecline;
|
|
|
|
inherit tests;
|
|
|
|
}
|