This makes it possible to deprecate the previous alias. Change-Id: I6efe73a21dc771cfa28094bbac434a188aebfd45 Reviewed-on: https://cl.tvl.fyi/c/depot/+/2647 Tested-by: BuildkiteCI Reviewed-by: sterni <sternenseemann@systemli.org>
		
			
				
	
	
		
			15 lines
		
	
	
	
		
			403 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
	
		
			403 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| { depot, ... }:
 | |
| 
 | |
| depot.nix.buildGo.external {
 | |
|   path = "golang.org/x/net";
 | |
|   src = builtins.fetchGit {
 | |
|     url = "https://go.googlesource.com/net";
 | |
|     rev = "c0dbc17a35534bf2e581d7a942408dc936316da4";
 | |
|   };
 | |
| 
 | |
|   deps = with depot.third_party; [
 | |
|     gopkgs."golang.org".x.text.secure.bidirule.gopkg
 | |
|     gopkgs."golang.org".x.text.unicode.bidi.gopkg
 | |
|     gopkgs."golang.org".x.text.unicode.norm.gopkg
 | |
|   ];
 | |
| }
 |