about summary refs log tree commit diff
path: root/third_party/gerrit-queue/default.nix
blob: d3988f59d125154d0e1569abfac2d7db6caad8ba (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ pkgs, lib, ... }:

pkgs.buildGoModule {
  pname = "gerrit-queue";
  version = "master";
  vendorHash = "sha256:0n5h7j416yb2mwic9c3rhqza64jlvl7iw507r9mkw3jadn4whm7a";
  src = ./.;

  meta = with lib; {
    description = "Gerrit submit bot";
    homepage = "https://github.com/tweag/gerrit-queue";
    license = licenses.asl20;
  };
}