2021-12-09 14:11:32 +01:00
|
|
|
{ pkgs, lib, ... }:
|
|
|
|
|
|
|
|
pkgs.buildGoModule {
|
|
|
|
pname = "gerrit-queue";
|
|
|
|
version = "master";
|
2022-09-26 19:33:05 +02:00
|
|
|
vendorHash = "sha256:0n5h7j416yb2mwic9c3rhqza64jlvl7iw507r9mkw3jadn4whm7a";
|
2021-12-09 14:11:32 +01:00
|
|
|
src = ./.;
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Gerrit submit bot";
|
|
|
|
homepage = "https://github.com/tweag/gerrit-queue";
|
|
|
|
license = licenses.asl20;
|
|
|
|
};
|
|
|
|
}
|