Unforeseen problem: `buildkite-agent` runs its builds in a separate directory, so if I want the `nix-build` command to build the newly checked out code, I need to set <briefcase> to the CWD.
		
			
				
	
	
		
			8 lines
		
	
	
	
		
			147 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
	
		
			147 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
let
 | 
						|
  briefcase = import <briefcase> {};
 | 
						|
in briefcase.buildHaskell.shell {
 | 
						|
  deps = hpkgs: with hpkgs; [
 | 
						|
    hspec
 | 
						|
    unordered-containers
 | 
						|
  ];
 | 
						|
}
 |