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>
		
			
				
	
	
		
			38 lines
		
	
	
	
		
			952 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
	
		
			952 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
# Usocket is a portable socket library
 | 
						|
{ depot, pkgs, ... }:
 | 
						|
 | 
						|
let
 | 
						|
  inherit (depot.nix) buildLisp;
 | 
						|
 | 
						|
  src = pkgs.fetchFromGitHub {
 | 
						|
    owner = "usocket";
 | 
						|
    repo = "usocket";
 | 
						|
    rev = "fdf4fd1e0051ce83340ccfbbc8a43a462bb19cf2";
 | 
						|
    sha256 = "0x746wr2324l6bn7skqzgkzcbj5kd0zp2ck0c8rldrw0rzabg826";
 | 
						|
  };
 | 
						|
in buildLisp.library {
 | 
						|
  name = "usocket";
 | 
						|
  deps = with depot.third_party.lisp; [
 | 
						|
    (buildLisp.bundled "asdf")
 | 
						|
    (buildLisp.bundled "sb-bsd-sockets")
 | 
						|
    split-sequence
 | 
						|
  ];
 | 
						|
 | 
						|
  srcs = [
 | 
						|
    # usocket also reads its version from ASDF, but there's further
 | 
						|
    # shenanigans happening there that I don't intend to support right
 | 
						|
    # now. Behold:
 | 
						|
    (builtins.toFile "usocket.asd" ''
 | 
						|
      (in-package :asdf)
 | 
						|
      (defsystem usocket
 | 
						|
        :version "0.8.3")
 | 
						|
    '')
 | 
						|
  ] ++
 | 
						|
  # Now for the regularly scheduled programming:
 | 
						|
  (map (f: src + ("/" + f)) [
 | 
						|
    "package.lisp"
 | 
						|
    "usocket.lisp"
 | 
						|
    "condition.lisp"
 | 
						|
    "backend/sbcl.lisp"
 | 
						|
  ]);
 | 
						|
}
 |