11 lines
		
	
	
	
		
			180 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
	
		
			180 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| { universe ? import <universe> {}, ... }:
 | |
| 
 | |
| universe.nix.buildClojure.program {
 | |
|   name = "test";
 | |
|   deps = with universe.third_party.clojure; [
 | |
| 
 | |
|   ];
 | |
|   srcs = [
 | |
|     ./main.clj
 | |
|   ]
 | |
| }
 |