Add the following packages along with their transitive dependencies: - trivial-ldap - defclass-std - easy-routes Change-Id: Ib24517f18d14d57540362132c9a24ff2a5a4bd9d Reviewed-on: https://cl.tvl.fyi/c/depot/+/1336 Tested-by: BuildkiteCI Reviewed-by: tazjin <mail@tazj.in> Reviewed-by: kanepyork <rikingcoding@gmail.com>
		
			
				
	
	
		
			22 lines
		
	
	
	
		
			451 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
	
		
			451 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| { depot, pkgs, ... }:
 | |
| 
 | |
| let src = pkgs.fetchFromGitHub {
 | |
|     owner = "rwiker";
 | |
|     repo = "trivial-ldap";
 | |
|     rev = "3b8f1ff85f29ea63e6ab2d0d27029d68b046faf8";
 | |
|     sha256 = "1zaa4wnk5y5ff211pkg6dl27j4pjwh56hq0246slxsdxv6kvp1z9";
 | |
|   };
 | |
| in depot.nix.buildLisp.library {
 | |
|   name = "trivial-ldap";
 | |
| 
 | |
|   deps = with pkgs.lisp; [
 | |
|     usocket
 | |
|     cl-plus-ssl
 | |
|     cl-yacc
 | |
|   ];
 | |
| 
 | |
|   srcs = map (f: src + ("/" + f)) [
 | |
|     "package.lisp"
 | |
|     "trivial-ldap.lisp"
 | |
|   ];
 | |
| }
 |