Bump gerrit plugins dep hashes, and for code-owners rebase it against master. Change-Id: If7da0ca391b4a5c0102560ca8d52b6f5a2dfd223 Reviewed-on: https://cl.tvl.fyi/c/depot/+/9734 Autosubmit: lukegb <lukegb@tvl.fyi> Tested-by: BuildkiteCI Reviewed-by: lukegb <lukegb@tvl.fyi>
		
			
				
	
	
		
			19 lines
		
	
	
	
		
			653 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
	
		
			653 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ depot, pkgs, ... }@args:
 | 
						|
 | 
						|
let
 | 
						|
  inherit (import ../builder.nix args) buildGerritBazelPlugin;
 | 
						|
in
 | 
						|
buildGerritBazelPlugin rec {
 | 
						|
  name = "oauth";
 | 
						|
  depsOutputHash = "sha256:16lv1glsfkn2bagx0vs6sgjf1mdd8vf3dl3iby1zvcm3wnrwfz7y";
 | 
						|
  src = pkgs.fetchgit {
 | 
						|
    url = "https://gerrit.googlesource.com/plugins/oauth";
 | 
						|
    rev = "f9bef7476bc99f7b1dc3fe2d52ec95cd7ac571dc";
 | 
						|
    sha256 = "08wf50bz7ash37mzlrxfy7hvmjsf6s4ncpcw5969hs9hjvjfj4dz";
 | 
						|
  };
 | 
						|
  overlayPluginCmd = ''
 | 
						|
    chmod +w "$out" "$out/plugins/external_plugin_deps.bzl"
 | 
						|
    cp -R "${src}" "$out/plugins/${name}"
 | 
						|
    cp "${src}/external_plugin_deps.bzl" "$out/plugins/external_plugin_deps.bzl"
 | 
						|
  '';
 | 
						|
}
 |