about summary refs log blame commit diff
path: root/nix/runExecline/default.nix
blob: 22d968a1c64357a20d1625ae9d506102dfdb0fa9 (plain) (tree)
1
2
3
4
5
6
7
8
9
10









                                               
                                            







                                    
{ 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;
}