2022-07-14 12:49:19 +00:00
|
|
|
{ lib, bundlerApp, bundlerUpdateScript }:
|
2020-11-12 09:05:59 +00:00
|
|
|
|
|
|
|
bundlerApp {
|
|
|
|
pname = "gitlab-triage";
|
|
|
|
gemdir = ./.;
|
|
|
|
exes = [ "gitlab-triage" ];
|
|
|
|
|
2022-07-14 12:49:19 +00:00
|
|
|
passthru.updateScript = bundlerUpdateScript "gitlab-triage";
|
|
|
|
|
2020-11-12 09:05:59 +00:00
|
|
|
meta = with lib; {
|
|
|
|
description = "GitLab's issues and merge requests triage, automated!";
|
|
|
|
homepage = "https://gitlab.com/gitlab-org/gitlab-triage";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ SuperSandro2000 ];
|
|
|
|
};
|
|
|
|
}
|