d92ca10990
Change-Id: Ib6f4fd5817fb5415cff5ea1d8c75c8c9a08d56b4 Reviewed-on: https://cl.tvl.fyi/c/depot/+/7185 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:07mgvd7fvg1xqlabjn644505yx98vjrmwxx1arwsykir1h82h0b2";
|
|
src = pkgs.fetchgit {
|
|
url = "https://gerrit.googlesource.com/plugins/code-owners";
|
|
rev = "6fdf3ce2e52904b35e2a5824a4197155c2c6b4e4";
|
|
sha256 = "sha256:17k6310py71wax3881mf3vsf9zas648j4xzs9h0d7migv5nzsdzs";
|
|
};
|
|
patches = [
|
|
./using-usernames.patch
|
|
];
|
|
}
|