forked from the-distro/infra
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 :)
10 lines
386 B
Nix
10 lines
386 B
Nix
self: super: {
|
|
buildBazelPackageNG = self.callPackage ../pkgs/buildBazelPackageNG { };
|
|
gerrit = self.callPackage ../pkgs/gerrit { };
|
|
buildGerritBazelPlugin = self.callPackage ../pkgs/gerrit_plugins/builder.nix { };
|
|
gerritPlugins = {
|
|
code-owners = self.callPackage ../pkgs/gerrit_plugins/code-owners { };
|
|
oauth = self.callPackage ../pkgs/gerrit_plugins/oauth { };
|
|
};
|
|
}
|