In preparation for the solution of b/108, we need to consistently use `depot.third_party` for packages that are only packed in the TVL depot and `pkgs` for things that come from nixpkgs. This commit cleans up a huge chunk of these uses in //third_party Change-Id: Ic382c0cdea7330a84d5f0b7d109c824ddceb94e7 Reviewed-on: https://cl.tvl.fyi/c/depot/+/2912 Tested-by: BuildkiteCI Reviewed-by: sterni <sternenseemann@systemli.org>
		
			
				
	
	
		
			22 lines
		
	
	
	
		
			464 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
	
		
			464 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 depot.third_party.lisp; [
 | 
						|
    usocket
 | 
						|
    cl-plus-ssl
 | 
						|
    cl-yacc
 | 
						|
  ];
 | 
						|
 | 
						|
  srcs = map (f: src + ("/" + f)) [
 | 
						|
    "package.lisp"
 | 
						|
    "trivial-ldap.lisp"
 | 
						|
  ];
 | 
						|
}
 |