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>
		
			
				
	
	
		
			14 lines
		
	
	
	
		
			375 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
	
		
			375 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ depot, ... }:
 | 
						|
 | 
						|
depot.nix.buildGo.external {
 | 
						|
  path = "google.golang.org/genproto";
 | 
						|
  src = builtins.fetchGit {
 | 
						|
    url = "https://github.com/google/go-genproto";
 | 
						|
    rev = "0243a4be9c8f1264d238fdc2895620b4d9baf9e1";
 | 
						|
  };
 | 
						|
 | 
						|
  deps = with depot.third_party; [
 | 
						|
    gopkgs."github.com".golang.protobuf.proto.gopkg
 | 
						|
    gopkgs."github.com".golang.protobuf.ptypes.any.gopkg
 | 
						|
  ];
 | 
						|
}
 |