about summary refs log tree commit diff
path: root/pkgs/applications/version-management/gitlab-triage/default.nix
blob: 34fb6f73c64e6ce2d2be89ad623df730934bbb8e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ lib, bundlerApp, bundlerUpdateScript }:

bundlerApp {
  pname = "gitlab-triage";
  gemdir = ./.;
  exes = [ "gitlab-triage" ];

  passthru.updateScript = bundlerUpdateScript "gitlab-triage";

  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; [ ];
  };
}