nixpkgs/pkgs/applications/version-management/gitlab-triage/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
463 B
Nix
Raw Normal View History

{ lib, bundlerApp, bundlerUpdateScript }:
2020-10-22 09:24:14 +00:00
bundlerApp {
pname = "gitlab-triage";
gemdir = ./.;
exes = [ "gitlab-triage" ];
passthru.updateScript = bundlerUpdateScript "gitlab-triage";
2020-10-22 09:24:14 +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;
2023-07-23 17:30:22 +00:00
maintainers = with maintainers; [ ];
2023-11-27 01:17:53 +00:00
mainProgram = "gitlab-triage";
2020-10-22 09:24:14 +00:00
};
}