aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/applications/version-management/gitlab-triage/default.nix
blob: 09dfbcbc368b9e0261709638183d46b9bb0fd16a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ lib, bundlerApp }:

bundlerApp {
  pname = "gitlab-triage";
  gemdir = ./.;
  exes = [ "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; [ SuperSandro2000 ];
  };
}