diff options
Diffstat (limited to 'third_party/gerrit-queue/default.nix')
-rw-r--r-- | third_party/gerrit-queue/default.nix | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/third_party/gerrit-queue/default.nix b/third_party/gerrit-queue/default.nix new file mode 100644 index 000000000000..427e31218399 --- /dev/null +++ b/third_party/gerrit-queue/default.nix @@ -0,0 +1,14 @@ +{ pkgs, lib, ... }: + +pkgs.buildGoModule { + pname = "gerrit-queue"; + version = "master"; + vendorSha256 = "0n5h7j416yb2mwic9c3rhqza64jlvl7iw507r9mkw3jadn4whm7a"; + src = ./.; + + meta = with lib; { + description = "Gerrit submit bot"; + homepage = "https://github.com/tweag/gerrit-queue"; + license = licenses.asl20; + }; +} |