5e9e1146e1
GitOrigin-RevId: 18036c0be90f4e308ae3ebcab0e14aae0336fe42
16 lines
428 B
Nix
16 lines
428 B
Nix
{ 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; [ ];
|
|
};
|
|
}
|