Change-Id: I8fa10b52c44bd3d5efb0fff740ad6d5da6e96831 Reviewed-on: https://cl.tvl.fyi/c/depot/+/10802 Tested-by: BuildkiteCI Reviewed-by: tazjin <tazjin@tvl.su>
		
			
				
	
	
		
			17 lines
		
	
	
	
		
			506 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
	
		
			506 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ depot, pkgs, ... }@args:
 | 
						|
 | 
						|
let
 | 
						|
  inherit (import ../builder.nix args) buildGerritBazelPlugin;
 | 
						|
in
 | 
						|
buildGerritBazelPlugin rec {
 | 
						|
  name = "code-owners";
 | 
						|
  depsOutputHash = "sha256:0jv62cc1kpgsmwk119i9njmqn6w6k8frlbgcw87y8nfbpprmcf01";
 | 
						|
  src = pkgs.fetchgit {
 | 
						|
    url = "https://gerrit.googlesource.com/plugins/code-owners";
 | 
						|
    rev = "e654ae5bda2085bce9a99942bec440e004a114f3";
 | 
						|
    sha256 = "sha256:14d3x3iqskgw16pvyaa0swh252agj84p9pzlf24l8lgx9d7y4biz";
 | 
						|
  };
 | 
						|
  patches = [
 | 
						|
    ./using-usernames.patch
 | 
						|
  ];
 | 
						|
}
 |