Seems to fix weird issues related to CCL I encountered. Change-Id: Id5c34c7c98e22b2bc56d6723af85cac1e031ed72 Reviewed-on: https://cl.tvl.fyi/c/depot/+/3365 Tested-by: BuildkiteCI Reviewed-by: tazjin <mail@tazj.in>
		
			
				
	
	
		
			15 lines
		
	
	
	
		
			389 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
	
		
			389 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| # iterate is an iteration construct for Common Lisp, similar to the
 | |
| # LOOP macro.
 | |
| { depot, ... }:
 | |
| 
 | |
| let src = builtins.fetchGit {
 | |
|   url = "https://gitlab.common-lisp.net/iterate/iterate.git";
 | |
|   rev = "c24f6715bb3b962499bb4643636baaac2df4a957"; # 2021-05-23, 1.5.3
 | |
| };
 | |
| in depot.nix.buildLisp.library {
 | |
|   name = "iterate";
 | |
|   srcs = [
 | |
|     "${src}/package.lisp"
 | |
|     "${src}/iterate.lisp"
 | |
|   ];
 | |
| }
 |