From f36d1d1b2e10bdea332509f952941b6506f4e9a2 Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Sat, 13 Jun 2020 19:25:20 +0100 Subject: 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 Reviewed-by: lukegb --- third_party/gerrit_plugins/default.nix | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 third_party/gerrit_plugins/default.nix (limited to 'third_party') diff --git a/third_party/gerrit_plugins/default.nix b/third_party/gerrit_plugins/default.nix new file mode 100644 index 0000000000..989129ae8c --- /dev/null +++ b/third_party/gerrit_plugins/default.nix @@ -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"; }; +} -- cgit 1.4.1