about summary refs log tree commit diff
path: root/third_party/gerrit_plugins/builder.nix
blob: 7676f5020848584a88061933a57e418a08987e1e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ depot, pkgs, ... }:
{
  buildGerritBazelPlugin = {
    name,
    src,
    depsOutputHash,
    overlayPluginCmd ? ''
      cp -R "${src}" "$out/plugins/${name}"
    '',
  }: ((depot.third_party.gerrit.override {
    name = "${name}.jar";

    src = pkgs.runCommandLocal "${name}-src" {} ''
      cp -R "${depot.third_party.gerrit.src}" "$out"
      chmod +w "$out/plugins"
      ${overlayPluginCmd}
    '';

    bazelTarget = "//plugins/${name}";
  }).overrideAttrs (super: {
    deps = super.deps.overrideAttrs (superDeps: {
      outputHash = depsOutputHash;
    });
    installPhase = ''
      cp "bazel-bin/plugins/${name}/${name}.jar" "$out"
    '';
  }));
}