We have this nice `runExecline` now, so we don’t need to use `runCommand` (which spawns bash) just to write a simple script. Change-Id: I2941ed8c1448fa1d7cc02dc18b24a8a945b2c38b Reviewed-on: https://cl.tvl.fyi/c/depot/+/704 Tested-by: BuildkiteCI Reviewed-by: tazjin <mail@tazj.in> Reviewed-by: BuildkiteCI
		
			
				
	
	
		
			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;
 | 
						|
}
 |