mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
d277300000
Set passthru.updateScript = bundlerUpdateScript "gitlab-triage"; for easier updates.
16 lines
444 B
Nix
16 lines
444 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; [ SuperSandro2000 ];
|
|
};
|
|
}
|