feat(3p/gerrit_plugins): Add derivations for Gerrit owners plugin

Change-Id: I319f812746aea6069c45727f5afae8b9b79effdd
Reviewed-on: https://cl.tvl.fyi/c/depot/+/221
Reviewed-by: q3k <q3k@q3k.org>
Reviewed-by: lukegb <lukegb@tvl.fyi>
This commit is contained in:
Vincent Ambo 2020-06-13 19:25:20 +01:00 committed by tazjin
parent 9d01000257
commit f36d1d1b2e

16
third_party/gerrit_plugins/default.nix vendored Normal file
View file

@ -0,0 +1,16 @@
{ pkgs, ... }:
let inherit (pkgs) fetchurl;
in {
# https://gerrit.googlesource.com/plugins/owners
owners = fetchurl {
url = "https://storage.googleapis.com/tazjins-data/tvl/owners_3.1.jar";
sha256 = "1kp61hbz74irsxsbgrj9hk8jlavjx8jvkmbf3kwfa62wvzivc94b";
} // { name = "owners"; };
# https://gerrit.googlesource.com/plugins/owners
owners-autoassign = fetchurl {
url = "https://storage.googleapis.com/tazjins-data/tvl/owners-autoassign_3.1.jar";
sha256 = "1kfrgbds62jx1bxwwnzmd6jrb1sg671kssk7sy4nkyb6p5vlq8hq";
} // { name = "owners-autoassign"; };
}