8 lines
		
	
	
		
			164 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			164 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| { runCommand, hello }:
 | |
| 
 | |
| runCommand "hello-test-run" {
 | |
|   nativeBuildInputs = [ hello ];
 | |
| } ''
 | |
|   diff -U3 --color=auto <(hello) <(echo 'Hello, world!')
 | |
|   touch $out
 | |
| '' |