c4fb0432ae
GitOrigin-RevId: 3fc1143a04da49a92c3663813c6a0c1e8ccd477f
19 lines
393 B
Nix
19 lines
393 B
Nix
{ 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;
|
|
inherit (depot.nix) getBins writeScript;
|
|
inherit (pkgs) stdenv coreutils;
|
|
inherit pkgs;
|
|
};
|
|
|
|
in {
|
|
__functor = _: runExecline;
|
|
inherit tests;
|
|
}
|