Luke Granger-Brown
dd6ee53bfe
This does a bit more than advertised, since this also switches to a different set of Bazel package building infrastructure that I'm hoping will be more extensible than buildBazelPackage as it exists in nixpkgs today. In any case, the FOD here _seems_ to be much more stable than that previously produced by the old approach, but no promises :)
15 lines
373 B
Nix
15 lines
373 B
Nix
{ buildGerritBazelPlugin, fetchgit }:
|
|
|
|
buildGerritBazelPlugin rec {
|
|
name = "code-owners";
|
|
version = "7de40d8";
|
|
src = fetchgit {
|
|
url = "https://gerrit.googlesource.com/plugins/code-owners";
|
|
rev = "7de40d8b30e55eb64316b6fc3d0d00da9caddade";
|
|
hash = "sha256-0sLwUcG9RN1o9vZGW8ErwL7UgJapgYoo8XMGsWLO25Q=";
|
|
};
|
|
patches = [
|
|
./using-usernames.patch
|
|
];
|
|
}
|